Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
86877 张曦 C语言6.4 C++ Accepted 0 MS 260 KB 162 2024-07-28 23:04:26

Tests(1/1):


Code:

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