#include <stdio.h>
int main()
{
int x=1,find=0;
while (1)
{
if(x>200) continue ;
x++;
if( x%2==1&&x%3==2&&x%5==4&&x%6==5&&x%7==0)
{
printf("x=%d\n",x);
find=1;
x++;
}
}
return 0;
}
6.3
最新推荐文章于 2024-06-08 17:12:22 发布
441

被折叠的 条评论
为什么被折叠?



