Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
143543 卫梓昊 07今天很热 C++ Compile Error 0 MS 0 KB 152 2026-01-17 09:47:11

Tests(0/0):


Code:

#inclde<iostream> using namespace std; int main(){ int a; cin>>a; if(a>30) cout<<"hot"; else cout<<"cold"; return 0; }


Run Info:

Main.cc:1:2: error: invalid preprocessing directive #inclde
 #inclde
  ^
Main.cc: In function 'int main()':
Main.cc:5:2: error: 'cin' was not declared in this scope
  cin>>a; 
  ^
Main.cc:7:6: error: 'cout' was not declared in this scope
      cout<<"hot";
      ^
Main.cc:9:6: error: 'cout' was not declared in this scope
      cout<<"cold";
      ^