Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
147926 姜景文 财务管理 C++ Accepted 0 MS 276 KB 218 2026-02-09 08:41:49

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ double a; double b=0; for(int i=0;i<12;i++){ cin>>a; b+=a; } cout<<"¥"; printf("%.2lf", b/12); return 0; }