Run ID:148102
提交时间:2026-02-09 16:51:24
#include <bits/stdc++.h> using namespace std; int main(){ double a=0; double t; for(int i=0;i<12;i++){ cin>>t; a+=t; } double s=a/12; cout << "¥" << fixed << setprecision(2) << s << endl; return 0; }