作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我编写了一个示例程序来计算两个数字的 gcd。这是:
#include stdio.h
int main(void) {
int m, n, rem;
printf("Enter two numbers consecutively(with a space between them): ");
scanf("%d %d", &m, &n);
while (m) {
n = m % n; //problem here
n = rem;
}
printf("%d is the GCD", rem);
return 0;
}
我认为我应该将模运算符语句的输出存储在 rem 中,但到目前为止我的程序没有响应任何给定的输入。有人可以给我线索吗?
最佳答案
Can somebody give me a clue.
对于初学者,您不会在循环内更改 m
,因此它无法结束。
关于c - 如何通过欧几里德算法计算两个数的gcd,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14797435/
我是一名优秀的程序员,十分优秀!