解题思路:
注意事项:
参考代码:
#include<iostream> using namespace std; int main() { long long int a; cin>>a; if(a%3==0&&a%5==0&&a%7==0) cout<<"3 5 7"<<endl; else if(a%3==0&&a%5==0&&a%7!=0) cout<<"3 5"<<endl; else if(a%3==0&&a%5!=0&&a%7==0) cout<<"3 7"<<endl; else if(a%3!=0&&a%5==0&&a%7==0) cout<<"5 7"<<endl; else if(a%3==0&&a%5!=0&&a%7!=0) cout<<"3"<<endl; else if(a%3!=0&&a%5==0&&a%7!=0) cout<<"5"<<endl; else if(a%3!=0&&a%5!=0&&a%7==0) cout<<"7"<<endl; else if(a%3!=0&&a%5!=0&&a%7!=0) cout<<"n"<<endl; return 0; }
0.0分
2 人评分
C语言训练-求函数值 (C语言代码)浏览:599 |
C语言程序设计教程(第三版)课后习题8.1 (C语言代码)浏览:573 |
C语言程序设计教程(第三版)课后习题8.5 (C语言代码)浏览:562 |
C二级辅导-统计字符 (C语言代码)浏览:514 |
交换Easy (C语言代码)浏览:805 |
管理学院的人数 (Java代码)浏览:560 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:690 |
顺子浏览:1369 |
Manchester-A+B for Input-Output Practice浏览:1909 |
开门人和关门人浏览:1315 |