Hello Blog!
Hello blog!This is my frist blog.
#include<iostream> #include<string> #include<algorithm> #include<vector> #include<stdio.h> #include<math.h> #include<string.h> #include<vector> #define ll long long using namespace std; int cmp(int a,int b){ return a>b; } ll read(){ ll x=0,w=1; char ch=0; while(ch<'0'||ch>'9'){ if(ch=='-') w=-1; ch=getchar(); } while(ch>='0'&&ch<='9'){ x=x*10+ch-'0'; ch=getchar(); } return w*x; }//快读算法 bool IsPrimeNumber(int n){//判断该数是不是素数 if (n==2){ return true; } if (n%2==0||n==1){ return false; } int sqrtn=(int)sqrt((double)n); bool flag=true; for (int i=3;i<=sqrtn;i+=2){ if (n%i==0){ flag=false; } } return flag; }//快速判断某个数是不是素数的算法 void reversea(int t[],int n){ int temp[n]; for(int i=0;i<n;i++){ temp[i]=t[i]; } int r=0; for(int i=n-1;i>=0;i--){ t[r++]=temp[i]; } }//数组逆序函数 int main(){ cout<<"Hello blog!This is my frist blog."<<endl; return 0; }