Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
103735 | 卢语涵 | 公约数问题 | C++ | Compile Error | 0 MS | 0 KB | 126 | 2024-12-29 15:02:42 |
#include<iostream> using namespace std; int main(){ int x,y; cin>>x>>y; cout<<__gcd(x,y); return 0; }
Main.cc: In function 'int main()': Main.cc:7:20: error: '__gcd' was not declared in this scope cout<<__gcd(x,y); ^