程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> C++實現費馬小定理素數測試

C++實現費馬小定理素數測試

編輯:關於C++
#include
#include
#include
#include
#include

using namespace std;

long long qmod(int a, int b, int p) {
    long long res = 1;

    long long term = a%p;

    while(b) {
        if(b&1){
            res = (res*term)%p;
        }
        
        term = (term*term)%p;
        b >>= 1;
    }

    return res;
}

bool is_prime(long long n) {   
    int i;
    for(i = 0; i < 100; ++i) {
        if(qmod(1+rand()%(n-1),n-1, n) != 1)
            break;
    }
    if(i < 100)
        return false;
    else 
        return true;
}

int main(void) {
    int n;
    while(cin >> n) {
        if(is_prime(n))
            cout << "yes" << endl;
        else 
            cout << "no" << endl;
    }
    return 0;
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved