Pagini recente » Cod sursa (job #1104012) | Cod sursa (job #399387) | Cod sursa (job #901500) | Cod sursa (job #2247794)
#include <fstream>
using namespace std;
ifstream fin("euclid3.in");
ofstream fout("euclid3.out");
void gcd(int a, int b, int &d, int &x, int &y)
{
if(b == 0)
{
d = a;
x = 1;
y = 0;
}
else
{
int x0, y0;
gcd(b, a%b, d, x0, y0);
x = y0;
y = x0 - (a/b)*y0;
}
}
int main()
{
short T;
fin >> T;
while(T)
{
long a, b, c;
fin >> a >> b >> c;
int d, x, y;
gcd(a, b, d, x, y);
if(c%d==0)
fout << x * (c/d) << ' ' << y * (c/d) << '\n';
else
fout << 0 << ' ' << 0 << '\n';
T--;
}
fin.close();
fout.close();
return 0;
}