摘要: #include<iostream> using namespace std; bool p(int a){ for(int i=2;i<=a-1;i++) if(a%i==0)return false; return true; } int main(){ int n; cin>>n; int s 阅读全文
posted @ 2022-09-07 22:20 丷Ghost丷 阅读(57) 评论(0) 推荐(0)