C语言课后习题
Posted pquan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言课后习题相关的知识,希望对你有一定的参考价值。
/*最大公约数求解*/
#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;
}
}
以上是关于C语言课后习题的主要内容,如果未能解决你的问题,请参考以下文章