Pagini recente » Cod sursa (job #598894) | Cod sursa (job #623091) | Cod sursa (job #462390) | Cod sursa (job #1748992) | Cod sursa (job #2271469)
#include<fstream>
using namespace std;
int T, a, b, c, i, x, y, d;
void euclid(int a, int b, int *x, int *y) {
if (b == 0) {
d = a;
*x = 1;
*y = 0;
}
else {
int x0, y0;
euclid(b, a%b, &x0, &y0);
*x = y0;
*y = x0 - (a / b) * y0;
}
}
void readDataAndCompute(ifstream &fin, ofstream &fout) {
fin >> T;
for (i = 1; i <= T; ++i) {
fin >> a >> b >> c;
euclid(a, b, &x, &y);
if (c % d != 0) {
fout << 0 << " " << 0 << "\n";
}
else {
fout << x * c / d << " " << y * c / d << "\n";
}
}
}
int main() {
ifstream fin("euclid3.in");
ofstream fout("euclid3.out");
readDataAndCompute(fin, fout);
fin.close();
fout.close();
return 0;
}