Run ID:123351

提交时间:2025-06-29 13:03:04

#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 <<" "; } } return 0; }