Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
120716 陈泊延 07a+b>c C++ Compile Error 0 MS 0 KB 89 2025-05-31 15:07:34

Tests(0/0):


Code:

int main(){ int a,b,c; cin>>a>>b>>c; a+b>c?cout<<"Yes":cout<<"No"; return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:5:1: error: 'cin' was not declared in this scope
 cin>>a>>b>>c; 
 ^
Main.cc:6:7: error: 'cout' was not declared in this scope
 a+b>c?cout<<"Yes":cout<<"No"; return 0; }
       ^