2017年9月22日
摘要: #include<cmath>#include<iostream>using namespace std;bool isPrime(int n){ if (n == 1 || n == 0) return false; if (n == 2) return true; int tmp = (int) 阅读全文
posted @ 2017-09-22 14:56 无痕メ微梦 阅读(123) 评论(0) 推荐(0)