Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
131264 罗嘉睿 财务管理 C++ Accepted 1 MS 276 KB 174 2025-09-21 16:33:20

Tests(1/1):


Code:

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