Pagini recente » Cod sursa (job #2913839) | Cod sursa (job #1358099) | Cod sursa (job #225992) | Cod sursa (job #1288860) | Cod sursa (job #2796647)
#include <fstream>
using namespace std;
void euclid(int a, int b, int* d, int* x, int* y) {
if (b==0) {
*d=a;
*x=1;
*y=0;
}
else {
int x0, y0;
euclid(b, a%b, d, &x0, &y0);
*x = y0;
*y = x0 - (a/b)*y0;
}
}
int main()
{
ifstream fin("inversmodular.in");
ofstream fout("inversmodular.out");
int A,N;
fin>>A>>N;
int* d=new int;
int* x=new int;
int* y=new int;
euclid(A, N, d, x, y);
while(*x<0) {
*x+=N;
}
fout<<*x;
delete d;
delete x;
delete y;
fin.close();
fout.close();
return 0;
}