Cod sursa(job #3244208)

Utilizator gabrielvGabriel Vanca gabrielv Data 24 septembrie 2024 03:44:02
Problema Algoritmul lui Euclid Scor 100
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.58 kb
using namespace std;
#include<cstdio>

int cmmdc(int a, int b)
{
    if (b > a)
    {
        int temp = a;
        a        = b;
        b        = temp;
    }

    unsigned int remainder;

    while (b > 0)
    {
        remainder = a % b;
        a         = b;
        b         = remainder;
    }

    return a;
}

int main()
{
    freopen("euclid2.in", "r",stdin);
    freopen("euclid2.out", "w",stdout);
    int a, b, T;
    scanf("%d", &T);
    while (T--)
    {
        scanf("%d %d", &a, &b);
        printf("%d\n", cmmdc(a, b));
    }
    return 0;
}