码迷,mamicode.com
首页 > 其他好文 > 详细

F-数论

时间:2016-08-06 10:00:25      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:

这道题考的互质,最开始题目也没有怎么读懂,后来去百度了一下,看了一些解题报告,然后才有了思路,然后就试着慢慢去写

#include <iostream>  
#include <algorithm>  
using namespace std;  
  
int gcd(int n,int m)  
{  
    while(n%m!=0)  
    {  
        int temp;  
        temp=m;  
        m=n%m;  
        n=temp;  
    }  
    return m;  
}  
  
int main()  
{  
    int t,n,m;  
    while (scanf("%d",&t)!=EOF)  
    {  
        while(t--)  
        {  
            scanf("%d%d",&n,&m);  
            if(n<m)  
                swap(n,m);  
            int flag=gcd(n,m);  
            if(flag==1)  
                printf("NO/n");  
            else  
                printf("YES/n");  
        }  
    }  
    return 0;  
}  

  

F-数论

标签:

原文地址:http://www.cnblogs.com/yintoki/p/5743300.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!