"Primitive Calculator" - 创建除法循环时出现问题

"Primitive Calculator" - Problem with creating division loop

本文关键字:问题 循环 除法 Primitive Calculator 创建      更新时间:2023-10-16

我正在尝试创建一个使用循环而不是"*"或"/"运算符的计算器。我在下面的除法循环中计算结果时遇到问题,该除法循环将两个正数作为输入。如何计算准确的结果?

cout << "Enter the expression to run the calculaor simulator: " << endl;
cin >> lhs >> op >> rhs;
// lhs and rhs stand for left/right hand side of the input expression
// op is the operator (+,-,*,/)
    case'*':
    {
        result = 0;
        for(i = 1; i <= rhs; i++)
        {
            result = result + lhs;
        }
        cout << "The result is " << result;
        break;
    }
    // So this is my working multiplication part 
    // Now i have to somehow do the subtraction form for division

    case'/':
    { 
    result = lhs;
    for (i = 1; result > 0 && result > rhs;i++)
    {
     result = result - rhs;
    }
    // This is the loop which is giving me a hard time
    // I was gonna leave this blank because nothing I've been doing seems to be working but 
    // I wanted you to get a general idea of what I was thinking
    }
        cout << "The result is " << i << endl;
// I print out i from the count to see how many times the number gets divided

几乎计算结果中的余数,而除法几乎i

正值的正确方法是:

#include <iostream>
using namespace std;
int main()
{
  int lhs, rhs;
  if (!(cin >> lhs >> rhs))
    cerr << "invalid inputs" << endl;
  else if (rhs == 0)
    cerr << "divide by 0";
  else {
    int result = 0;
    while (lhs >= rhs) {
      lhs -= rhs;
      result += 1;
    }
    cout << "div = " << result << " (remainder = " << lhs << ')' << endl;
  }
}

编译和执行:

/tmp % g++ -pedantic -Wall -Wextra d.cc
/tmp % ./a.out
11 5
div = 2 (remainder = 1)
/tmp % ./a.out
3 3
div = 1 (remainder = 0)
/tmp % ./a.out
2 3
div = 0 (remainder = 2)