Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
849 A班-许锘林 整除问题 C++ 解答错误 0 0 MS 276 KB 232 2024-11-30 10:48:58

Tests(0/10):


#include <bits/stdc++.h> using namespace std; int main() { int a,b,x; cin>>a>>b>>x; for(int i = a;i <= b;i++) { if(i % 3 == 0) { cout<<i<<" "; } } return 0; }


测评信息: