| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 154460 | 蒋禹曦 | 12输出m的倍数 | C++ | Compile Error | 0 MS | 0 KB | 216 | 2026-05-30 14:16:42 |
#include<bits/stdc++.h> using namespace std; int main() { int n,m; cin>>n>>m; cin>>n>>m; for(int i=0;i<=n;i++) { if(i/m==0){ cout<<i; } } return 0;
Main.cc: In function 'int main()':
Main.cc:14:13: error: expected '}' at end of input
return 0;
^