Cod sursa(job #1357530)

Utilizator JavaAlexDinu Alexandru JavaAlex Data 23 februarie 2015 22:51:40
Problema Algoritmul lui Euclid Scor 30
Compilator cpp Status done
Runda Arhiva educationala Marime 0.38 kb
#include <iostream>
#include <fstream>

using namespace std;

int main()
{
    ifstream fin("euclid2.in");
    ofstream fout("euclid2.out");
    int n , x , y;
    fin>>n;
    for(int i=1;i<=n;i++)
    {
        fin>>x>>y;
        while(x != y)
        {
            if(x < y) y = y - x;
            else x = x - y;
        }
        fout<<x<<endl;
    }
    return 0;
}