52 条题解
-
-1
这道题非常简单,用四个分支if语句即可完成,请看题解:
#include <iostream> using namespace std; int main() { int n; cin >> n; if (n % 2 == 0) { cout << 2 << endl; } if (n % 3 == 0) { cout << 3 << endl; } if (n % 5 == 0) { cout << 5 << endl; } if (n % 7 == 0) { cout << 7 << endl; } return 0; }
(已AC,请放心食用( •̀ ω •́ )✧~) 最后,请大家~~点个赞再走呗~~,谢谢!
-
-1
较为简单(或是灰常简单)的if分支问题呦!挨个除遍就行啦!上代码: #include <iostream> using namespace std; int main() { int n; cin >> n; if (n % 2 == 0) { cout << "2" << endl; } if (n % 3 == 0) { cout << "3" << endl; } if (n % 5 == 0)**** { cout << "5" << endl; } if (n % 7 == 0) { cout << "7" << endl; } return 0; } 点赞再抱走哈!AC在N秒(N <= 30)后与你会面(除非网络不给力……)
-
-1
#include <iostream> using namespace std; int main() { int n; cin>>n; if (n%2==0)//判断是否能被2整除 { cout<<"2"<<endl;//输出2 } if (n%3==0)//判断是否能被3整除 { cout<<"3"<<endl;//输出3 } if (n%5==0)//判断是否能被5整除 { cout<<"5"<<endl;//输出5 } if (n%7==0)//判断是否能被7整除 { cout<<"7";//输出7 } return 0; }
编程不易😕 ,赞在哪里👀️ ?
信息
- ID
- 296
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 2
- 标签
- 递交数
- 3335
- 已通过
- 1986
- 上传者