Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
75939 cfx 财务管理 C++ Accepted 1 MS 272 KB 228 2024-06-01 10:24:59

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int main() { double n,sum=0; for(int i=1;i<=12;i++) { cin>>n; sum+=n; } cout<<"¥"<<fixed<<setprecision(2)<<sum/12<<endl; return 0; }