Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
148111 吴昊 财务管理 C++ Accepted 1 MS 268 KB 242 2026-02-09 16:57:28

Tests(1/1):


Code:

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