Header Ads

  • Breaking News

    Make A Simple Calculator in C++ Using Switch Statement

    in C++ we make a simple calculator very easily. there are many methods its depend on your logic who to code it, but I gave you a simple coding method to you. we use the arithmetic operator
    (+, -,*, /)

    # include <iostream>
    using namespace std;

    int main()
    {
        char op;
        float num1, num2;

        cout << "Enter operator either + or - or * or /: ";
        cin >> op;

        cout << "Enter two operands: ";
        cin >> num1 >> num2;

        switch(op)
        {
            case '+':
                cout << num1+num2;
                break;

            case '-':
                cout << num1-num2;
                break;

            case '*':
                cout << num1*num2;
                break;

            case '/':
                cout << num1/num2;
                break;

            default:
                // If the operator is other than +, -, * or /, error message is shown
                cout << "Error! operator is not correct";
                break;
        }

        return 0;
    }

    hence the output is


    Enter operator either + or - or * or divide: +
    enter two operands
    8
    8
    8+8=16




    No comments

    Post Top Ad

    Post Bottom Ad