Computer Science, asked by Aryansingh001, 5 hours ago

watch the attachment plz

follow my sis plz

Write a program in c++ to make a calculator​

Attachments:

Answers

Answered by itzlovelygirl78
2

Answer:

# include <iostream>

using namespace std;

int main() {

char op;

float num1, num2;

cout << "Enter operator: +, -, *, /: ";

cin >> op;

cout << "Enter two operands: ";

cin >> num1 >> num2;

switch(op) {

case '+':

cout << num1 << " + " << num2 << " = " << num1 + num2;

break;

case '-':

cout << num1 << " - " << num2 << " = " << num1 - num2;

break;

case '*':

cout << num1 << " * " << num2 << " = " << num1 * num2;

break;

case '/':

cout << num1 << " / " << num2 << " = " << num1 / num2;

break;

default:

// If the operator is other than +, -, * or /, error message is shown

cout << "Error! operator is not correct";

break;

}

return 0;

}

Output

Enter operator either + or - or * or divide : -

Enter two operands: 3.4 8.4

3.4 - 8.4 = -5.0

Explanation:

s.ee the attachment above

she is myne bestie pls follow her brother

meet u soon✌️

purple u (◕ᴗ◕✿)

Attachments:
Similar questions