Run ID:111274

提交时间:2025-03-01 11:23:20

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