-->
当前位置:首页 > 题库 > 正文内容

编程题:who is the last?

Luz4年前 (2021-10-14)题库928
There are N people, numbered from 1 to N, sitting around in a circle. Counted from the NO.1, the M th people should leave the game. Then, from the next one, the counting loop will go on. After several loops, there will be only on guy left. Writing a program to calculate who is the last people.


### 输入格式:

Two integers, separated by commas. The first integer represents N individuals (0<N), the second integer represents M (0<M<=N).


### 输出格式:

N integers, separated by commas. These numbers indicate the order of the person to leave the circle, with their numbers.


### 输入样例:

在这里给出一组输入。例如:

in
5,1


### 输出样例:

在这里给出相应的输出。例如:

out
2,4,1,5,3







答案:若无答案欢迎评论

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。