Pagini recente » Cod sursa (job #94244) | Cod sursa (job #2646066) | Cod sursa (job #1240365) | Cod sursa (job #705320) | Cod sursa (job #1207065)
# include <fstream>
# include <algorithm>
# include <cstring>
# include <vector>
using namespace std;
ifstream f("euclid3.in");
ofstream g("euclid3.out");
int n;
int a, b, c, t;
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(){
int i, x, y, d = 0;
f >> t;
for ( i = 1 ; i <= t ; i++ ){
f >> a >> b >> c;
euclid( a, b, d, x, y );
//g << x << " " << y << " " << d << "\n";
if ( c % d == 0 )
g << x * ( c / d ) << " " << y * ( c / d ) << "\n";
else
g << 0 << " " << 0 << "\n";
}
return 0;
}