题解 1047: [编程入门]报数问题

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1047-报数问题

摘要:解题思路:最简单的方法注意事项:参考代码:int main(){ int arr[100]; int n; int i; int count=0; int num=0; sca……

C语言改版001

摘要:#include<stdio.h>#include<stdlib.h>typedef struct student{    int number;    struct student*next;}no……

1047: [编程入门]报数问题

摘要:合理利用continue是该题突破的重点 即解决《在报数时如何跳过已经退圈的位置》 ```c #include #include #include #include int mai……

python[编程入门]报数问题-队列实现

摘要:解题思路:可以使用一个循环列表来模拟循环报数,每次弹出报到3的人,直到列表中只剩下最后一个人即留下的人。最后返回该人的编号即可。参考代码:def last_person(n):    # 创建一个1至……

刷题记录(头秃第n天)

摘要:解题思路:约瑟夫环注意事项:计数器设置与p的位置关系参考代码:#include<string.h>#include<stdio.h>#include<stdlib.h>typedef struct l……