Run ID:107096
提交时间:2025-01-17 12:27:08
#include<bits/stdc++.h> using namespace std; int main(){ int n; bool f=true; for(int i=1;i<=100;i++){ if(i%2==0){ f=false; if(i%3==0){ cout<<i<<" "; } } } return 0; }