gcd.c
来自「/* Divide and Conquer */ /* Find minim」· C语言 代码 · 共 33 行
C
33 行
/* Greatest Comman Divisor */
/* GCD.C */
# include<stdio.h>
int Greatest_Comm_Div(int , int);
/* Definition of the Greatest Comman Divisor Function */
int Greatest_Comm_Div( int n, int m)
{
if(( n >= m) && (( n % m) == 0))
return(m);
else
Greatest_Comm_Div(m,(n % m));
}
/* main function */
void main()
{
int n, m;
int result;
printf("\n Input the first integer number: ");
scanf("%d", &n);
printf("\n Input the second integer number: ");
scanf("%d", &m);
result = Greatest_Comm_Div(n, m);
printf("\n Greatest Comman Diviser of : %d and %d is = %d", n, m, result);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?