提交时间:2026-01-15 19:35:34

运行 ID: 82587

#include<bits/stdc++.h> using namespace std; int main(){ int s=0; for(int i=2;i>=2;++i){ if(i%2==1&&i%3==1&&i%5==1){ cout<<i<<" "; ++s; if(s==10) break; } } return 0; }