Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
854 A班-许锘林 整除问题 C++ 通过 100 0 MS 268 KB 232 2024-11-30 10:50:42

Tests(10/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 % x == 0) { cout<<i<<" "; } } return 0; }


测评信息: