Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
112585 | 鲁博睿 | 05买水果 | C++ | Wrong Answer | 0 MS | 260 KB | 281 | 2025-03-09 17:35:29 |
#include<bits/stdc++.h> using namespace std; int main(){ printf("%.3lf\n",(5+8+12)/3.0); printf("%.3lf ",39/5.0); printf("%.3lf\n",39%5); printf("%.3lf ",39/8.0); printf("%.3lf\n",39%8); printf("%.3lf ",39/12.0); printf("%.3lf\n",39%12); return 0; }
------Input------
0
------Answer-----
8.333 7 4 4 7 3 3
------Your output-----
8.333 7.800 7.800 4.875 4.875 3.250 3.250