Run ID:150180
提交时间:2026-03-23 17:04:14
#include <iostream> using namespace std; int main(){ int i=1; for(;i<=100;i=i+1){ if(i%3==0) cout<<i<<" "; } }