Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
155815 熊泊彧 08三个数排序 C++ Compile Error 0 MS 0 KB 208 2026-06-13 23:09:46

Tests(0/0):


Code:

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


Run Info:

Main.cc:1:9: error: #include expects "FILENAME" or 
 #include(iostream)
         ^
Main.cc: In function 'int main()':
Main.cc:5:5: error: 'cin' was not declared in this scope
     cin>>a>>b>>c;
     ^
Main.cc:6:20: error: 'swap' was not declared in this scope
     if(a