提交时间:2024-02-18 11:30:15

运行 ID: 40942

#include<bits/stdc++.h> using namespace std; int main(){ int cnt=0,k=2,flag=1; while(cnt<100002){ for(int i=2;i<k;i++){ if(k%i==0)flag=0; } if(flag)cnt++; flag=1; if(cnt==100002)break; k++; } cout<<k; return 0; }