解题思路:
注意事项:
参考代码:
#include<iostream> using namespace std; int main() { int x; char z; cin >> x >> z; int res = 0; if(x <= 1000) { res += 8; } else { res += 8 + (x - 1000) / 500 * 4; if((x - 1000) % 500 != 0) res += 4; } if(z == 'y') res += 5; cout << res; return 0; }
0.0分
5 人评分