Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
146138 孔声豪 按班分组 C++ Compile Error 0 MS 0 KB 168 2026-01-27 10:52:22

Tests(0/0):


Code:

#include <iostream> using namespace std; int main() { int a,b,c; cin>>a>>b; while(b!=0){ c=a%b; a=b; b=c; } return 0: }


Run Info:

Main.cc: In function 'int main()':
Main.cc:12:13: error: expected ';' before ':' token
     return 0:
             ^
Main.cc:12:13: error: expected primary-expression before ':' token