111 条题解
-
-1
#include <iostream> using namespace std; int main() { int n; cin >> n; if(n<10) { cout<<"A"<<endl; } if(n>=10&&n<20) { cout<<"B"<<endl; } if(n>=20&&n<40) { cout << "C"<<endl; } if(n>=40&&n<50) { cout<<"D"<<endl; } if(n>=50) { cout << "E"<<endl; } return 0; } 点赞再看!!!
-
-1
#include <bits/stdc++.h>//万能开头 using namespace std; double n;//题目中有误导,虽然有五种型号,但只要定义一个变量就行了//没有说明是整数还是小数,所以建议用“double” int main() { cin>>n;//输入变量 if(n<10)//if,else if,else语句(有点长) { cout<<"A"; } else if(n>=10&&n<20)//“&&”表示以及(and) { cout<<"B"; } else if(n>=20&&n<40) { cout<<"C"; } else if(n>=40&&n<50) { cout<<"D"; } else { cout<<"E"; } return 0; } //一手交赞,一手交货(代码) //核桃hetao1609095编程 //水印
-
-1
#include <iostream> using namespace std; int main() { int n; cin>>n; if (n<10) { cout<<"A"<<endl; } else if(n>=10 and n<20) { cout<<"B"<<endl; } else if(n>=20 and n<40) { cout<<"C"<<endl; } else if(n>=40 and n<50) { cout<<"D"<<endl; } else if(n>=50 and n<80) { cout<<"E"<<endl; } return 0; }
-
-1
我哪错了 求解 #include <iostream> using namespace std; int main() { int A,B,C,D,E; cin>>A>>B>>C>>D>>E; if(A<10) { cout<<"A"; } if(B<20) { if(B>=10) { cout<<"B"; } } if(C<40) { if(C>=20) { cout<<"C"; } } if(D<50) { if(D>=40) { cout<<"D"; } } if(E<80) { if(E>=50) { cout<<"E"; } } return 0; }
-
-1
上代码!!!
#include <iostream> using namespace std; int main() { int n; cin >> n; if (n < 10) { cout << "A"; } if (n >= 10) { if (n < 20) { cout << "B"; } } if (n >= 20) { if (n < 40) { cout << "C"; } } if (n >= 40) { if (n < 50) { cout << "D"; } } if (n >= 50) { if (n < 80) { cout << "E"; } } return 0; }
-
-1
#include <bits/stdc++.h> using namespace std; int main() { int a; cin >> a; if (a < 10) { cout << "A"; } if (a < 20 and a >= 10) { cout << "B"; } if (a < 40 and a >= 20) { cout << "C"; } if (a < 50 and a >= 40 ) { cout << "D"; } if (a < 80 and a >= 50) { cout << "E"; return 0; } }
-
-1
#include <bits/stdc++.h> using namespace std; int main() { int a; cin >> a; if (a < 10) { cout << "A"; } if (a < 20 and a >= 10) { cout << "B"; } if (a < 40 and a >= 20) { cout << "C"; } if (a < 50 and a >= 40 ) { cout << "D"; } if (a < 80 and a >= 50) { cout << "E"; return 0; } }
-
-1
很简单,不多说,上代码
#include <bits/stdc++.h> using namespace std; int main() { long long a; cin>>a; if (a<10) { cout<<"A"<<endl; } else { if (a>=10 && a<20) { cout<<"B"<<endl; } else { if (a>=20 && a<40) { cout<<"C"<<endl; } else { if (a>=40 && a<50) { cout<<"D"<<endl; } else { if (a>=50 && a<80) { cout<<"E"<<endl; } } } } } return 0; }
信息
- ID
- 39
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 5
- 标签
- 递交数
- 11538
- 已通过
- 4834
- 上传者