Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

code in C++ Simple calculator 1. Input two numbers and a character from user in the given format. Store them in some variable say num1,

code in C++ image text in transcribed
Simple calculator 1. Input two numbers and a character from user in the given format. Store them in some variable say num1, op and num2. 2. USE Switch on the value of op i.e. switch(op). 3. There are four possible values of op i.e.'+','','*' and '/'. 4. For case '+' perform addition and store result in some variable i.e. result = num1 + num2. 5. Similarly, for case '-' perform subtraction and store result in some variable i.e. result = num1 - num2. 6. Repeat the process for multiplication and division. 7. Finally output the value of result

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

PostgreSQL Up And Running A Practical Guide To The Advanced Open Source Database

Authors: Regina Obe, Leo Hsu

3rd Edition

1491963417, 978-1491963418

More Books

Students also viewed these Databases questions

Question

Discuss the states of accounting

Answered: 1 week ago