| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 149900 | 赖泓宇 | 两个数的最小公倍数 | C++ | Compile Error | 0 MS | 0 KB | 419 | 2026-03-20 19:13:39 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ long long a,b; cin>>a>>b; for(int i=2;i<=899999999;i++){ if(a%i==0&&b%i==0&&){ cout<<i; break; } } }
Main.cc: In function 'int main()':
Main.cc:10:28: error: expected primary-expression before ')' token
if(a%i==0&&b%i==0&&){
^