-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmpz_prime_factorization.cpp
More file actions
68 lines (59 loc) · 1.62 KB
/
Copy pathmpz_prime_factorization.cpp
File metadata and controls
68 lines (59 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
//******************************************************************************
// mpz_prime_factorization.cpp : Prime factorization of mpz_class
// integers
// Copyright (C) 2019 Tomonori Kouya
//
// This program is free software: you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published by the
// Free Software Foundation, either version 3 of the License or any later
// version.
//
// This program is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
// for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
//******************************************************************************
#include <iostream>
#include "gmpxx.h"
using namespace std;
/*
$ g++ mpz_prime_factorization.cpp -lgmpxx -lgmp
$ ./a.out
a = 246857968
a = 246857968
246857968 = 2 * 2 * 2 * 2 * 7 * 73 * 109 * 277
*/
int main(void)
{
int num_prime;
mpz_class a, prime, c;
// input
cout << "a = ";
cin >> a;
cout << "a = " << a << endl;
// prime := 2
prime = 2UL;
cout << a << " = ";
num_prime = 0;
while(a >= prime)
{
while(1)
{
c = a % prime;
if(c != 0)
break;
a /= prime;
num_prime++;
if(num_prime >= 2)
cout << " * ";
cout << prime;
}
mpz_nextprime(prime.get_mpz_t(), prime.get_mpz_t());
}
printf("\n");
return 0;
}