Run ID:111281
提交时间:2025-03-01 11:27:11
#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; }