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

蓝桥杯 公约数公倍数

时间:2016-11-26 16:58:03      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:pre   printf   print   break   nbsp   log   for   std   blog   

最小公倍数

#include<stdio.h>
int main(){
    int i,a,b;
    scanf("%d%d",&a,&b);
    for (i=a;;i++){
        if(i%a==0&&i%b==0)
         {
         printf("%d",i);break; }
    }
    return 0;
}

 

最小公约数与交换

#include<stdio.h>
void Swap(int *a,int *b) 
{
                             
*a^=*b;
*b^=*a;
*a^=*b;
}

GYS(int a,int b)
{   int c;
    
    while(a%b!=0)
    {
        c=a%b;
        a=b;
        b=c;}
    return b;
    
}
int main()
{
    int a,b;
    puts("Please input a and b:");
    scanf("%d%d",&a,&b);
    Swap(&a,&b);
    printf("%d and %d \n最大公约数为:%d\n",a,b,GYS(a,b));
    return 0;
}





   

 

蓝桥杯 公约数公倍数

标签:pre   printf   print   break   nbsp   log   for   std   blog   

原文地址:http://www.cnblogs.com/zhangzimu/p/6104237.html

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