as12350992 发表于 2020-11-18 00:31:57

谢谢大神帮助,C++的问题

本帖最后由 as12350992 于 2020-11-18 00:50 编辑

Program 2: Greatest Common Divisor (GCD)

Overview

Write a program to find the GCD of two numbers

Directions

The GCD (Greatest Common Divisor) of two numbers is the largest positive integer number that divides both the numbers without leaving any remainder. For example, GCD of 30 and 45 is 15. GCD also known as HCF (Highest Common Factor).
中文
计划2:最大除数(GCD)

总览

编写程序以查找两个数字的GCD

方向

两个数字的GCD(最大公约数)是最大的正整数,该数字将两个数字相除而不留下任何余数。例如,30和45的GCD值为15。GCD亦称为HCF(最高公因数)。

jackz007 发表于 2020-11-18 00:58:11

#include <stdio.h>

int gcd(int a , int b)
{
      int t                              ;
      for(; b ; t = a % b , a = b , b = t) ;
      return a                           ;
}

int main(void)
{
      printf("%d\n" , gcd(45 , 60))      ;
}
D:\00.Excise\C>g++ -o gcd gcd.c

D:\00.Excise\C>gcd
15

D:\00.Excise\C>

as12350992 发表于 2020-11-18 01:41:44

jackz007 发表于 2020-11-18 00:58


如果没有给出45, 和60 而是输入2个数字呢?

jackz007 发表于 2020-11-18 01:44:02

本帖最后由 jackz007 于 2020-11-18 01:48 编辑

as12350992 发表于 2020-11-18 01:41
如果没有给出45, 和60 而是输入2个数字呢?

#include <stdio.h>

int gcd(int a , int b)
{
      int t                              ;
      for(; b ; t = a % b , a = b , b = t) ;
      return a                           ;
}

int main(void)
{
      int a , b                            ;
      scanf("%d%d" , & a , & b)            ;
      printf("%d\n" , gcd(a , b))          ;
}
      编译、运行实况
D:\00.Excise\C>g++ -o gcd gcd.c

D:\00.Excise\C>gcd
60 45
15

D:\00.Excise\C>

as12350992 发表于 2020-11-18 01:49:09

jackz007 发表于 2020-11-18 01:44
编译、运行实况

您可以帮忙回答我的其他问题么?谢谢你了。 无论答案是否适合,我都会给出最佳评价的,谢谢。

jackz007 发表于 2020-11-18 10:11:47

as12350992 发表于 2020-11-18 01:49
您可以帮忙回答我的其他问题么?谢谢你了。 无论答案是否适合,我都会给出最佳评价的,谢谢。

       当然可以,尽我所能吧。
页: [1]
查看完整版本: 谢谢大神帮助,C++的问题