C++ 质数

素数判定
#include<bits/stdc++.h>
#define fi first
#define se second
#define pb push_back
#define PII pair<int,int >
#define int long long 
#define IOS std::ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
 
using namespace std;
 
const int N = 1e6+10;
 
int n,m;
int va[N];
 
signed main()
{
    IOS;
    long long n;
    cin>>n;
    int suc = 1;
    if(n==1) suc = 0;
    for(int i=2;i<=n/i;i++)
    {
        if(n%i==0)
        {
            suc = 0;
            break;
        }
    }
    if(suc) cout<<"YES";
    else cout<<"NO";
    return 0;
}








质因数分解
#include<bits/stdc++.h>
#define fi first
#define se second
#define pb push_back
#define PII pair<int,int >
#define int long long 
#define IOS std::ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
 
using namespace std;
 
const int N = 1e7+10;
 
int n,m;
int va[N],cnt = 0;
 
void init(int x)
{
    for(int i=2;i<=x/i;i++)
    {
        if(x%i==0)
        {
            cnt++;
            while(1)
            {
                va[cnt]++;
                x /= i;
                if(x%i!=0) break;
            }
        }
    }
    if(x!=1) va[++cnt] = 1; 
}
 
signed main()
{
    IOS;
    cin>>n;
    init(n);
    return 0;
}











欧拉晒
#include<bits/stdc++.h>
#define fi first
#define se second
#define pb push_back
#define PII pair<int,int >
#define int long long 
#define IOS std::ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
 
using namespace std;
 
const int N = 1e7+10,M = 1e6;
 
int n,m;
bool vis[N];
int pri[N],cnt = 0;
 
void init(int x)
{
    for(int i=2;i<=x;i++)
    {
        if(vis[i]==0) pri[++cnt] = i;
        for(int j=1;j<=cnt;j++)
        {
            if(pri[j]*i>x) break;
            vis[i*pri[j]] = 1;
            if(i%pri[j]==0) break;
        }
    }
}
 
signed main()
{
    IOS;
    cin>>n;
    init(n);
    cout<<cnt;
    return 0;
}


  • 4
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值