c++编程,求一个最大公约数函数
c++编程,求一个最大公约数函数
日期:2021-04-19 17:27:36 人气:1
#include<stdio.h>
int gcd(int m,int n){
//求公约数
int r,temp;
if(n<m)//把大数放在n中,把小数放在m中.
{ temp=n;
n=m;
m=temp;
}
whil
c++编程,求一个最大公约数函数
#include<stdio.h>
int gcd(int m,int n){
//求公约数
int r,temp;
if(n<m)//把大数放在n中,把小数放在m中.
{ temp=n;
n=m;
m=temp;
}
whil