| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 71727 | sh25_wangsj | 计算书费 | C++ | 编译错误 | 0 MS | 0 KB | 291 | 2025-10-27 21:21:58 |
#include <iostream> using namespace std; int main() { int a,b,c,d,e,f,g,h,i,j; double money; cin>>a>>b>>c>>d>>e>>f>>g>>h>>i>>j; money=a*28.9+b*32.7+c*45.6+d*78+e*35+f*86.2+g*27.8+h*43+i*56+j*65; cout<<fixed<<setprecision(1)<<money; return 0; }