Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
155091 鸡哥 08比较三个数大小II C++ Compile Error 0 MS 0 KB 235 2026-05-31 14:17:45

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a<b){ if(a<c){ cout<<a; }else{ cout<<c; } }else{ if(b<c){ cout<<b; }else{ cout<<c } } return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:17:3: error: expected ';' before '}' token
   }
   ^