Pagini recente » Cod sursa (job #1954629) | Cod sursa (job #1700896) | Cod sursa (job #1554919) | Cod sursa (job #2128554) | Cod sursa (job #2271475)
#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;
}