标签:turn input NPU include \n numbers 最大公约数 scanf max
/*最大公约数求解*/
#include "stdafx.h"
#include <stdio.h>
int main()
{
int max(int,int);
int a,b;
printf("Please input your numbers\n");
scanf("%d,%d\n",&a,&b);
printf("最大公约数为:%d\n",max(a,b));
return 0;
}
int max(int,int)
{
int a,b,r;
int t;
if(b>a)
{
b=t;
t=b;
b=a;
}
while(r=a/b!=0)
{
a=b;
b=r;
return b;
}
}
标签:turn input NPU include \n numbers 最大公约数 scanf max
原文地址:https://www.cnblogs.com/pquan/p/10884199.html