Write a program in C language, ask to input two positive integers, find their maximum common divisor and output
时间: 2024-05-08 11:20:14 浏览: 82
用C语言编写二个通用计算程序
the result.
好的,您可以输入以下代码来实现您的需求:
```
#include <stdio.h>
// 定义函数,求最大公约数
int gcd(int a, int b) {
int temp;
while (b > 0) {
temp = b;
b = a % b;
a = temp;
}
return a;
}
int main() {
int a, b;
printf("请输入两个正整数:");
scanf("%d %d", &a, &b);
int result = gcd(a, b);
printf("它们的最大公约数是:%d", result);
return 0;
}
```
这个程序可以在 C 语言中运行,它会要求用户输入两个正整数,然后通过最大公约数的算法来计算它们的最大公约数并输出结果。
阅读全文