Cod sursa(job #1551266)

Utilizator tudormarcuMarcu Tudor tudormarcu Data 15 decembrie 2015 16:50:48
Problema Algoritmul lui Euclid Scor 100
Compilator cpp Status done
Runda Arhiva educationala Marime 0.45 kb
#include <iostream>
#include <fstream>
using namespace std;

int main()
{
    ifstream f("euclid2.in");
    ofstream g("euclid2.out");
    unsigned long T = 0;
    f>>T;
    unsigned long a, b, aux;
    while (T > 0)
    {
        f>>a>>b;
        while (b!=0)
        {
            aux = b;
            b = a%b;
            a = aux;
        }
        g<<a<<"\n";
        T--;
    }
    f.close();
    g.close();
    return 0;
}