仅使用加法在 c 中创建减法和除法

发布于 2024-11-04 11:16:01 字数 287 浏览 0 评论 0原文

我通过减法创建了除法,但无法通过加法算出来

int divide, divis, quotient;
printf("Enter Number 1:");
scanf("%d", &divide);

printf("Enter Number 2:");
scanf("%d", &divis);
quotient=0;
while(divide > 0){
divide = divide - divis;
quotient++;
}
printf("%d\n, quotient);

I have created division through subtraction but i cannot figure it out through addition

int divide, divis, quotient;
printf("Enter Number 1:");
scanf("%d", ÷);

printf("Enter Number 2:");
scanf("%d", &divis);
quotient=0;
while(divide > 0){
divide = divide - divis;
quotient++;
}
printf("%d\n, quotient);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

淡笑忘祈一世凡恋 2024-11-11 11:16:01

不要从开始并减去直到低于0,而是从0开始并加直到超过

请注意,您需要小心不要超出数字范围。

Instead of starting from divide and subtracting until you drop below 0, instead start from 0 and add until you exceed divide.

Note that you will need to be careful that you don't overflow your number range.

花心好男孩 2024-11-11 11:16:01

如果你已经有了除法,你可以将减数除以-1,然后加上被减数。

If you already have division, you can just divide the subtrahend by -1 and then add the minuend.

如若梦似彩虹 2024-11-11 11:16:01
#include <stdio.h>
#include <math.h>
int main() {
int num1,num2,cnt=0;
printf("Please enter num 1: \n");
scanf("%d",&num1);
printf("Please enter num 2: \n");
scanf("%d",&num2);
while(num1>=num2){
num1-=num2;
cnt++;
}
printf("%d",cnt);
return 0;
}
#include <stdio.h>
#include <math.h>
int main() {
int num1,num2,cnt=0;
printf("Please enter num 1: \n");
scanf("%d",&num1);
printf("Please enter num 2: \n");
scanf("%d",&num2);
while(num1>=num2){
num1-=num2;
cnt++;
}
printf("%d",cnt);
return 0;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文