5 条题解
-
4
#include <bits/stdc++.h> using namespace std; int main() { double n; cin >> n; if(n>=30) { cout << fixed << setprecision(1) << n*1.0; } else if(n>=20) { cout << fixed << setprecision(1) << n*1.2; } else if(n>=10) { cout << fixed << setprecision(1) << n*1.5; } else { cout << fixed << setprecision(1) << n*1.8; } }
-
1
#include<bits/stdc++.h> using namespace std; int main() { double c; cin >> c; if(c < 10) { c = c * 1.8; printf("%.1f",c); } else if(c >= 10 && c <= 19) { c = c * 1.5; printf("%.1f",c); } else if(c >= 20 && c <= 29) { c = c * 1.2; printf("%.1f",c); } else { c = c * 1.0; printf("%.1f",c); } return 0; }
原始算法 A
- 1
信息
- ID
- 301
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 1
- 标签
- 递交数
- 139
- 已通过
- 93
- 上传者