111 条题解
-
-3
-
-3
运用到了if语句和逻辑运算符
/* A B C D E && */ #include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; if(n<10) cout<<"A";//小于10公斤的用A型 if(n>=10 && n<20) cout<<"B";//大于等于10公斤小于20公斤的用B型 if( n>=20 && n<40) cout<<"C";//大于等于20公斤小于40公斤的用C型 if(n>=40 && n<50) cout<<"D";//大于等于40公斤的小于50公斤的用D型 if(n>=50 && n<80) cout<<"E";//大于等于50公斤小于80公斤的用E型 return 0; }
-
-4
include <bits/stdc++.h>
include <iostream>//为了不和他人代码重复,因此导入两个库
using namespace std ; int main() { int a; cin>>a;//以下的判断用于判断已知有A,B,C,D,E五种包装箱,为了不浪费材料,小于10公斤的用A型,大于等于10公斤小于20公斤的用B型,大于等于20公斤小于40公斤的用C型,大于等于40公斤的小于50公斤的用D型,大于等于50公斤小于80公斤的用E型.现在输入一货物的重量(小于80公斤),找出最经济型的包装箱型号. if (a < 10){ cout<<"A"; } else if(a >= 10 and a < 20){ cout<<"B"; } else if (a >= 20 and a < 40){ cout<<"C"; } else if (a >= 40 and a < 50){ cout<<"D"; } else { cout<<"E"; } }
-
-6
先导入万能头文件 #include <bits...... 定义并输入变量n int n; cin>>n; 对变量n进行判断,并输出ABCDE; if ...... { cout<<"A"; ...... }
#include <bits/stdc++.h> using namespace std; int main() { int n; cin>>n; if (n<10) { cout<<"A"; } if (n>10 and n<20) { cout<<"B"; } if (n>=20 and n<40) { cout<<"C"; } if (n>=40 and n<50) { cout<<"D"; } if (n>=50 and n<80) { cout<<"E"; } }
信息
- ID
- 39
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 5
- 标签
- 递交数
- 11538
- 已通过
- 4834
- 上传者