Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
147863 张蔚林 05买水果 C++ Compile Error 0 MS 0 KB 178 2026-02-08 20:33:59

Tests(0/0):


Code:

#include<iostream> using namespace std; int main() { int a=5,b=8,c=12,d=39; cout<<(a+b+c)/3<<endl; cout<<d/a<<d/b<<d/c<<endl; cout<<d/a%<<d/b%<<d/c%; return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:8:15: error: expected primary-expression before '<<' token
     cout<