| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 157276 | 孟建宇 | 05买水果 | C++ | Wrong Answer | 1 MS | 268 KB | 419 | 2026-07-21 18:34:18 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ double c=5; double f=8; double a=12; cout<<(c+f+a)/3.0<<endl; cout<<39.0/c<<endl; cout<<39.0/f<<endl; cout<<39.0/a; return 0; }
------Input------
0
------Answer-----
8.333 7 4 4 7 3 3
------Your output-----
8.33333 7.8 4.875 3.25