Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
90941 | 石水生 | 05买水果 | C++ | Wrong Answer | 1 MS | 264 KB | 229 | 2024-09-20 14:51:53 |
#include <bits/stdc++.h> using namespace std; int main(){ int a=5,b=8,c=12; double average =(a+b+c)/3.0; cout<<average<<endl; cout<<39/a<<" "<<39%a<<endl; cout<<39/b<<" "<<39%b<<endl; cout<<39/c<<" "<<39%c<<endl; }
------Input------
0
------Answer-----
8.333 7 4 4 7 3 3
------Your output-----
8.33333 7 4 4 7 3 3