Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
107546 常钰杰 财务管理 C++ Wrong Answer 1 MS 280 KB 264 2025-01-18 10:02:27

Tests(0/1):


Code:

#include <iostream> #include <cstdio> using namespace std; int main() { double a,b,c,d,e,f,g,h,i,j,k,l; double x; cin>>a>>b>>c>>d>>f>>g>>h>>i>>j>>k>>l; x=(a+b+c+d+f+g+h+i+j+k+l)/12; cout<<"¥"; printf("%.2f",x); return 0; }


Run Info:

------Input------
12345.12 12434.45 42524.56 86342.11 23436.67 75443.45 43565.90 54342.00 11111.33 34365.09 12231.32 21344.65
------Answer-----
¥35790.55
------Your output-----
¥34011.83