Run ID:101129
提交时间:2024-12-14 14:56:24
#include<iostream> using namespace std; int main(){ for(int i=1;i<=100;i++){ if(i%3==0){ cout<<i<<" "; } } }