Tutor Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65535/65535 K (Java/Others) Total Submission(s): 48 Accepted Submission(s): 27 Problem Description Lilin was a student of Tonghua Normal University. She is studying at University of Chicago n…
//卡格式的题目 #include<iostream> #include<iomanip>using namespace std;int main(){ int T,i; double money,sum,overage; cin >> T; while (T--){ sum = 0.00; for (i = 0; i < 12; i++){ cin >> money; sum += money; } overage = sum/12; int m =…