Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
119829 wjx10 财务管理 C++ Accepted 1 MS 272 KB 215 2025-05-19 20:29:53

Tests(1/1):


Code:

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