……
  2018年3月15日
摘要: #include #include using namespace std; void f(int n) { int i; for(i=2;i<=sqrt(n);i++)//一定要写上等号 { if(n%i==0)return ; } cout<<n<<endl; } int main() { int i; for(i=0... 阅读全文
posted @ 2018-03-15 15:02 兔子子子 阅读(99) 评论(0) 推荐(0) 编辑