Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
109446 田诗语 08三个数排序 C++ Compile Error 0 MS 0 KB 340 2025-02-09 09:18:10

Tests(0/0):


Code:

#include<iostream> #include<cstdio> using namespace std; int main(){ int a,b,c,x=0; cin>>a>>b>>c; if(a<b){ x=a; a=b; b=x; } if(a<c){ x=a; a=b; b=x; } if(b<c){ x=a; a=b; b=x; } cout<<a<<b<<c; return 0;


Run Info:

Main.cc: In function 'int main()':
Main.cc:23:13: error: expected '}' at end of input
     return 0;
             ^