Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
142033 杨浩宇 12输出m的倍数 C++ Compile Error 0 MS 0 KB 169 2025-12-29 17:05:27

Tests(0/0):


Code:

#include<iostream> using namespace std; int main(){ int n,m; cin>>i>>n; for(int i=1;i<=n,;i++){ if(i%m==0){ cout<<i<<" "; } } }


Run Info:

Main.cc: In function 'int main()':
Main.cc:5:10: error: 'i' was not declared in this scope
     cin>>i>>n;
          ^
Main.cc:6:19: error: expected primary-expression before ';' token
  for(int i=1;i<=n,;i++){
                   ^