Computer Science, asked by pratiksha7616, 6 months ago

write a c++ progarm to create a class "Number" having data members x and y and perform mathematical operations like addition,substraction,multiplication and division in two numbers using inline function

Answers

Answered by Areebayusuf786
0

Answer:

I don't know...........

Answered by gopalbhatia463
5

Answer:

This program takes an arithmetic operator (+, -, *, /) and two operands from an user and performs the operation on those two operands depending upon the operator entered by user.

Example: Simple Calculator using switch statement

# 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;

}

Output

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

Enter two operands:

3.4

8.4

3.4 - 8.4 = -5.0

Similar questions
Math, 6 months ago