Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
89007 | 林嘉乐 | 05买水果 | C++ | Wrong Answer | 1 MS | 260 KB | 252 | 2024-08-21 17:31:37 |
#include<iostream> using namespace std; int main() { int a,c,k; a=5; c=8; k=12; cout<<(a+c+k)/3<<endl; cout<<39/a<<endl; cout<<39/c<<endl; cout<<39/k<<endl; cout<<39%a<<endl; cout<<39%c<<endl; cout<<39%k<<endl; return 0; }
------Input------
0
------Answer-----
8.333 7 4 4 7 3 3
------Your output-----
8 7 4 3 4 7 3