Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
129597 黄子轩 不能被3整除的数 C++ 通过 100 0 MS 236 KB 207 2024-01-27 09:06:09

Tests(1/1):


#include<iostream> #include<cmath> #include<cstdio> using namespace std; int main() { int a=100; for(int a=100;a<=200;a++){ if(a%3!=0){ cout<<a<<" "; } } cout<<endl; }


测评信息: