Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
133700 陈峻徳 求和 C++ Compile Error 0 MS 0 KB 92 2025-10-20 17:08:43

Tests(0/0):


Code:

#include <iostream> using namespace std; intmain(){ cout<<"sum is"; cout<<"123+456" }


Run Info:

Main.cc:3:9: error: ISO C++ forbids declaration of 'intmain' with no type [-fpermissive]
 intmain(){
         ^
Main.cc: In function 'int intmain()':
Main.cc:6:1: error: expected ';' before '}' token
 }
 ^
Main.cc:6:1: warning: no return statement in function returning non-void [-Wreturn-type]