摘要:
#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; int v=0; int e=0 ; for(int i=0;i<=n-2;i++) { v+=i*(n-i-2); e+=(i*(n-i-2)+1); 阅读全文
摘要:
#include<bits/stdc++.h> using namespace std; struct pos { double x; double y; }; //计算三角形的有向面积 double area(double x0,double y0,double x1,double y1,doub 阅读全文
摘要:
#include<bits/stdc++.h> using namespace std; int main() { int flag[100]; int prime[100]; memset(flag,true,sizeof(flag)); memset(prime,0,sizeof(prime)) 阅读全文
摘要:
#include<bits/stdc++.h> #define max 100 using namespace std; int flag[max]; int prime[max]; int main() { int t=0; memset(flag,1,sizeof(flag)); for(int 阅读全文