| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 143645 | 余建成 | 按班分组 | C++ | Compile Error | 0 MS | 0 KB | 158 | 2026-01-17 12:24:41 |
#include<iostream> using namespace std; { int a,b,temp; cin>>a>>b; while(b!=0) { temp=a%b; a=b; b=temp; } cout<<a<<endl; return 0; }
Main.cc:3:1: error: expected unqualified-id before '{' token
{
^