Pagini recente » Cod sursa (job #236461) | Cod sursa (job #2023821) | Cod sursa (job #1233037) | Cod sursa (job #1113920) | Cod sursa (job #3184570)
/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl,
C#, OCaml, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog.
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <fstream>
using namespace std;
ifstream fin("euclid2.in");
ofstream fout("euclid2.out");
int euclid(int a, int b){
while(b!= 0)
{
int r = a % b;
a = b;
b = r;
}
return a;
}
int main()
{
int n,a,b;
fin>>n;
for(int i=1;i<=n;i++){
fin>>a>>b;
fout<<euclid(a,b)<<endl;
}
return 0;
}