提交时间:2024-02-18 12:13:00

运行 ID: 40981

#include<bits/stdc++.h> using namespace std; int main(){ int c=0,k=2,f=0; while(c<100002){ for(int i=2;i<k;i++){ if(k%i==0) f=1; } if(f==0) c++; k++; } cout<<k; return 0; } /* 笔记 大小写差32 0:48 A:65 */