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语言课后习题的主要内容,如果未能解决你的问题,请参考以下文章

python课后练习题不断更新

数据结构(C语言版)课后习题全套完整答案及详解 (答案由李冬梅老师撰写)

谭浩强版本C语言课后习题第四章

数据结构(C语言版 第2版严蔚敏版)完整课后习题答案汇总

c语言程序设计第二版宁爱军编课后习题答案

R语言基础题及答案——R语言与统计分析第二章课后习题(汤银才)