懒大王aq


私信TA

用户名:wangxuhao

访问量:165

签 名:

等  级
排  名 9995
经  验 1116
参赛次数 1
文章发表 3
年  龄 0
在职情况 学生
学  校 河北农业大学
专  业

  自我简介:

TA的其他文章

解题思路:

双层循环,实现计数123123123;三个一次循环。

利用取模i%n;




注意事项:
注意要让数组长度及时减去1

参考代码:

#include <stdio.h>

#include <stdlib.h>


/* run this program using the console pauser or add your own getch, system("pause") or input loop */


int main(int argc, char *argv[]) {

int n;

scanf("%d",&n);

int *p;

p=(int*)malloc(n*sizeof(int));

int i;

for(i=0;i<n;i++){

p[i]=i+1;

}

int count = -1;

while(n!=1){

for(i=1;i<=3;i++){

count=(count+1)%n;//count是数组的下标 

}

int j;

for(j=count+1;j<n;j++){

p[j-1]=p[j];

}

n--;//总人数减去1 

count--; //去掉一个数后报数下标也要往前移一次

}


printf("%d",p[0]);

return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »