c语言 在正整数中找出1个最小的、满足条件“被3、5、7、9除余数分别为1、3、5、7”的数。
答案:1 悬赏:80 手机版
解决时间 2021-03-01 21:54
- 提问者网友:鼻尖触碰
- 2021-02-28 21:29
c语言 在正整数中找出1个最小的、满足条件“被3、5、7、9除余数分别为1、3、5、7”的数。
最佳答案
- 五星知识达人网友:风格不统一
- 2021-02-28 22:49
最简单的是穷举。
//#include "stdafx.h"//If the vc++6.0, with this line.
#include "stdio.h"
int main(void){
int n=7;
while(n+=9)
if(n%3==1 && n%5==3 && n%7==5 && n%9==7){
printf("It is %d.
",n);
break;
}
return 0;
}
//#include "stdafx.h"//If the vc++6.0, with this line.
#include "stdio.h"
int main(void){
int n=7;
while(n+=9)
if(n%3==1 && n%5==3 && n%7==5 && n%9==7){
printf("It is %d.
",n);
break;
}
return 0;
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯