52 条题解
-
28
兄弟们,看过以前我发题解的童鞋们应该知道,这种题目,em,一句话用 if - if - if - if 即可,太简单,或者用循环,但是!这里的标题是……
分支问题!
好吧,来吧,上代码
(不用顶了……过于简单)#include <bits/stdc++.h> 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; }
-
1
这是我第一次发题解,有做的不好的地方请告诉我谢谢! 接下来我们分析一下这题—— 1.这题题目已经告诉我们了!我们要判断是不是这几个数字的倍数,所以根据入门级的难度(肯定很**),判断要几个对吧! 2.没有2(
相信没有人喜欢上面的一通分析拔,代码来啦!(没有反抄袭,但是尽量别复制,作者会伤心qwq)
#include <bits/stdc++.h> 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; }
这道题很简单!如果有我在luogu上团队的成员不会做,哼哼(我的规矩你们都知道(团队成员))
-
0
- 额(⊙﹏⊙),这题就一句话,if-if-if-if,应该没人不懂吧😕 ,但一定不要和else if弄混了,当然啦,for循环也是可以滴(不过我重点讲if语句)🎉️ (AC哒,大佬们放心) ``` #include <bits/stdc++.h> using namespace std; int main() { int n; cin>>n; if(n%20) { cout<<2<<endl; } if(n%30) { cout<<3<<endl; } if(n%50) { cout<<5<<endl; } if(n%70) { cout<<7<<endl; } return 0; } 制作不易,点个赞呗👍 !!! b( ̄▽ ̄)d
-
0
这道题可以运用等差数列的知识 2除外\n
你为神马连这么简单的题都要看题解!#include <iostream> using namespace std; int main(){ int a;cin>>a; if (a%2==0){ cout<<2<<endl; } for (int i=3;i<=7;i+=2){ if (a%i==0){ cout<<i<<endl; } } }
抱歉,这是上道题的 这个才是
#include <iostream> using namespace std; int main(){ int a;cin>>a; if (a%2==0){ cout<<2<<endl; } for (int i=3;i<=7;i+=2){ if (a%i==0){ cout<<i<<endl; } } }
不对呀,就是啊! -
0
#include <
bits/stdc++.h
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过了,请放心使用不要❤️
信息
- ID
- 296
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 2
- 标签
- 递交数
- 3335
- 已通过
- 1986
- 上传者