Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
126196 罗锦墨 15求两个数的最大公约数 C++ Compile Error 0 MS 0 KB 187 2025-07-16 16:20:35

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; for(int i=min(a,b);i>=1;i--){ if(n%i==0 and m%i==0){ cout<<i; return 0; } } return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:7:5: error: 'n' was not declared in this scope
  if(n%i==0 and m%i==0){
     ^
Main.cc:7:16: error: 'm' was not declared in this scope
  if(n%i==0 and m%i==0){
                ^