Run ID:142028
提交时间:2025-12-29 17:03:56
#include <iostream> using namespace std; int main(){ for(int n=1;n<100;n++){ if(n%3==0){ cout<<n<<" "; } } }