Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
13120 祝易涛 C语言6.4 C++ Accepted 2 MS 692 KB 144 2021-05-25 16:07:19

Tests(1/1):


Code:

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