Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
115865 | 李林叡 | 08比较三个数大小II | C++ | Compile Error | 0 MS | 0 KB | 192 | 2025-04-05 14:21:46 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,x,y; cin>>n>>x>>y; if(n<x&&n<y){ cout<<n; } if(x<y&&x<n){ cout<<x; } if(y<n&&y<x){ cout<<y; }
Main.cc: In function 'int main()': Main.cc:16:2: error: expected '}' at end of input } ^