Run ID:149467

提交时间:2026-03-13 18:34:28

#include<bits/stdc++.h> #include <iostream> using namespace std; int main() { for (int i = 1; i <= 100; i++) { if (i % 3 == 0) { continue; } cout << i << endl; } return 0; }