UVA 11388 (GCD LCM) Solution

Solve in C:

#include<stdio.h>
int main ()
{

    int n,lcm,i,gcm;
    scanf("%d",&n);
    {
        for(i=1; i<=n; i++)
        {
            scanf("%d%d",&gcm,&lcm);
            {
                if(lcm%gcm==0)
                    printf("%d %d\n",gcm,lcm);
                else
                    printf("-1\n");

            }

        }
    }
}


No comments

Most View Post

Recent post

RESTful APIs with CRUD Operations in Laravel 12| (2025)

  RESTful APIs serve as the foundation of modern web development. They follow a set of rules called Representational State Transfer (REST) t...

Powered by Blogger.