Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
6017 | BaiJunYi | 小玉家的电费 | C++ | 通过 | 100 | 0 MS | 772 KB | 431 | 2020-08-22 10:34:47 |
#include <iostream> #include <cstdio> #include <cmath> using namespace std; int main() { double n , h; cin >> n; if ( n < 150) { h = n * 0.4463; printf("%.1f",h); } else if ( n > 150 && n < 400) { h = (n-150)*0.4663 + (150 * 0.4463); printf("%.1f",h); } else if ( n > 400 ) { h = (n-400)*0.5663 + (150 * 0.4463) + (250 * 0.4663); printf("%.1f",h); } return 0; }