摘要: #include<cstdio> #include<algorithm> #include<cmath> using namespace std; #define PI acos(-1) #define EPS 1e-6 double B[10000]; int main(){ int n,N,f, 阅读全文
posted @ 2022-04-24 13:35 皮卡Q 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 判断是否是质数:如果是返回1;否则返回0; int func(int n) { int i; for(i=2; i<=sqrt(n); i++){ if(n%i==0){ return 1; } } return 0; } 二分的两个模板:调用函数的话头文件#include<algorithm> i 阅读全文
posted @ 2022-04-24 13:30 皮卡Q 阅读(27) 评论(0) 推荐(0) 编辑