Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
107025 | 于铁林 | 05买水果 | C++ | Compile Error | 0 MS | 0 KB | 261 | 2025-01-17 11:01:33 |
#include<iostream> #include<cstdio> using namespace std; int main(){ int b=5,a=8,g=12,y=39; printf("%.3f\n",(b+a+g)/3.0); cout<<y/b<<"<<" "<<y%b<<endl; cout<<y/a<<"<<" "<<y%a<<endl; cout<<y/g<<"<<" "<<y%g<<endl; return 0; }
Main.cc:7:21: warning: missing terminating " character cout<