Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
104813 陈皓轩 求和 C++ Compile Error 0 MS 0 KB 110 2025-01-11 13:34:05

Tests(0/0):


Code:

using namespace std; int main(){ int a=123,b=456; cout<<"sum is"; cout<<a+b; return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:4:5: error: 'cout' was not declared in this scope
     cout<<"sum is";
     ^