Run ID:123349

提交时间:2025-06-29 12:59:15

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