Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
129431 刘子隽bylz 不能被3整除的数 C++ 通过 100 0 MS 236 KB 181 2024-01-27 08:31:14

Tests(1/1):


#include <bits/stdc++.h> using namespace std; int main() { int n=200; int a[n]; int i=100; for(i=100;i<=n;i++){ a[i]=i; if(a[i]%3!=0) cout<<i<<" "; } return 0; }


测评信息: