当前位置:网站首页>求最大公约数与最小公倍数(C语言)
求最大公约数与最小公倍数(C语言)
2022-07-07 08:12:00 【璞玉牧之】
一、题目
写两个函数,分别求两个整数的最大公约数和最小公倍数,用主函数调用这两个函数。两个整数由键盘输入。
二、分析及代码
1.思路
- 最大公约数:两个或多个整数共有约数中最大的一个。利用辗转相除法计算。
- 最小公倍数:两个或多个整数共有倍数中除0外最小的一个。由于两个数的乘积等于这两个数的最大公约数与最小公倍数的积,所以,两个数的最小公倍数等于这两个数的乘积除最大公约数。
- 分析思路:分别定义两个函数,和两个变量a,b。第一个函数用辗转相除法求a,b的最大公约数,假设a>b,令a/b得到余数r,再将b作为被除数,r作为除数,得到余数…直至余数为0。第二个函数利用上述公式可求得两个数的最小公倍数。
2.代码
代码如下:
#include <stdio.h>
#include <stdlib.h>
int main()
{
int Greatest_Common_Divisor(int a,int b); //函数声明
int Least_Common_Multiple(int a,int b,int m); //函数声明
int a,b,m,x;
scanf("%d,%d",&a,&b);
m=Greatest_Common_Divisor(a,b);
x=Least_Common_Multiple(a,b,m);
printf("%d和%d的最大公约数是:%d\n",a,b,m);
printf("%d和%d的最小公倍数是:%d\n",a,b,x);
return 0;
}
int Greatest_Common_Divisor(int a,int b) //求最大公约数
{
int temp,r;
if(b>a) //让两个数中较大的数作为被除数
{
temp=a;
a=b;
b=temp;
}
while((r=a%b)!=0)
{
a=b; //使除数b变为被除数a
b=r; //使余数r变为除数b
}
return b;
}
int Least_Common_Multiple(int a,int b,int m) //求最小公倍数
{
return (a*b/m);
}
3.运行结果
边栏推荐
- The story of Plato and his three disciples: how to find happiness? How to find the ideal partner?
- STM32 product introduction
- Bean operation domain and life cycle
- 学习记录——高精度加法和乘法
- LLVM之父Chris Lattner:为什么我们要重建AI基础设施软件
- MCU与MPU的区别
- ORM -- logical relation and & or; Sort operation, update record operation, delete record operation
- Vs code specifies the extension installation location
- Smart city construction based on GIS 3D visualization technology
- STM32 ADC and DMA
猜你喜欢
Appx代碼簽名指南
[higherhrnet] higherhrnet detailed heat map regression code of higherhrnet
HAL库配置通用定时器TIM触发ADC采样,然后DMA搬运到内存空间。
Programming features of ISP, IAP, ICP, JTAG and SWD
Appx代码签名指南
Es classes and objects, prototypes
ES类和对象、原型
ORM -- grouping query, aggregation query, query set queryset object properties
STM32 Basics - memory mapping
Serial communication relay Modbus communication host computer debugging software tool project development case
随机推荐
Can I open a stock trading account online? Is it safe
Word自动生成目录的方法
ORM -- grouping query, aggregation query, query set queryset object properties
MCU与MPU的区别
Appx code signing Guide
Kotlin实现微信界面切换(Fragment练习)
STM32 product introduction
Chris LATTNER, the father of llvm: why should we rebuild AI infrastructure software
JMeter loop controller and CSV data file settings are used together
对存储过程进行加密和解密(SQL 2008/SQL 2012)
Chris Lattner, père de llvm: Pourquoi reconstruire le logiciel d'infrastructure ai
This article explains the complex relationship between MCU, arm, muc, DSP, FPGA and embedded system
PDF文档签名指南
Postman interface test IV
. Net configuration system
Introduction to uboot
@Transcation的配置,使用,原理注意事项:
2022.7.4DAY596
LLVM之父Chris Lattner:為什麼我們要重建AI基礎設施軟件
Some thoughts on the testing work in the process of R & D