Cod sursa(job #754761)

Utilizator AndreeaAVAndreea Veresteanu AndreeaAV Data 3 iunie 2012 11:48:25
Problema Algoritmul lui Euclid Scor 100
Compilator cpp Status done
Runda Arhiva educationala Marime 0.41 kb
/*Aceasta problema este tot de pe infoarena.http://infoarena.ro/problema/euclid2*/
#include <fstream>
using namespace std;

int main()
{   ifstream f("euclid2.in");
    ofstream g("euclid2.out");
    long long a,b,t,i,r;
    
    f >> t;
    
    for(i = 1;i <= t;i++){f >> a;
    f >> b;
    while (b){
    r = a%b;
    a = b;
    b = r;
    }
    g << a<<"\n";
    }
    f.close();
    g.close();
    return 0;
}