Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
138330 zxy 08比较三个数大小II C++ Compile Error 0 MS 0 KB 172 2025-11-24 16:50:38

Tests(0/0):


Code:

using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a<b&&a<c){ cout<<a; } if(b<a&&b<c){ cout<<b; } if(c<b&&c<a){ cout<<c; } }


Run Info:

Main.cc: In function 'int main()':
Main.cc:4:4: error: 'cin' was not declared in this scope
    cin>>a>>b>>c;
    ^
Main.cc:6:5: error: 'cout' was not declared in this scope
     cout<