输入两个正整数,输出他们的最大公约数 VF
发布网友
发布时间:2022-04-23 19:56
我来回答
共4个回答
热心网友
时间:2023-10-06 06:08
clear
input "请输入第1个数:" to a
input "请输入第2个数:" to b
c=min(a,b)
do while c>0
if a%c=0 and b%c=0
s=c
exit
endif
c=c-1
enddo
?"它们的最大公约数是:",s
热心网友
时间:2023-10-06 06:08
#include "stdio.h"
int *(int m, int n)
{
if(m<n)
{
int tmp;
tmp=m;
m=n;
n=tmp;
}
if(n==0)
{
return m;
}
else
return *(n,m%n);
}
int main()
{
printf("%d\n",*(60,80));
return 0;
}
参考:
http://hi.baidu.com/tanzhangwen/blog/item/3499e99b52294eb0c9eaf4a1.html
热心网友
时间:2023-10-06 06:08
#include<iostream>
using namespace std;
int main()
{
int *(int a,int b); /*函数说明*/
int a,b,c; /*定义整型变量*/
cout<<"请输入所求的两个整数:";
cin>>a>>b;
c=*(a,b);
cout<<"所求最大公约数为:"<<c<<endl;
return 0;
}
int *(int a,int b)
{
int r; /*定义整型变量*/
if(a==0||b==0) /*判断输入数据中是否含有零*/
{
if(a==0&&b!=0)
return b;
else if(a!=0&&b==0)
return a;
else
return 0;
}
else
a=(a>0?a:-a); /*将输入分别去绝对值*/
b=(b>0?b:-b);
if(a<b) /*将大的整数放在前面*/
{
r=a;
a=b;
b=r;
}
r=a%b;
while(r!=0) /*利用欧几里得辗转相除法*/
{
a=b;
b=r;
r=a%b;
}
return b;
}
热心网友
时间:2023-10-06 06:09
#include<stdio.h>
void main()
{
int a,b,a1,b1,c;
printf("Enter a,b");
scanf("%d%d",&a,&b);
a1=a;b1=b;
c=a1%b1;
while (c!=0)
{
a1=b1;b1=c;c=a1%b1;
}
printf("%d\n",b1);
printf("%d",a*b/b1);
}