Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In this lab, you complete a partially written C++ program that includes a function that returns a value. The program is a simple calculator that

In this lab, you complete a partially written C++ program that includes a function that returns a value. The program is a simple calculator that prompts the user for two numbers and an operator ( +, -, *, or / ). The two numbers and the operator are passed to the function where the appropriate arithmetic operation is performed. The result is then returned to the main()function where the arithmetic operation and result are displayed. For example, if the user enters 3, 4, and *, the following is displayed: 3 * 4 = 12

The source code file provided for this lab includes the necessary variable declarations and input and output statements. Comments are included in the file to help you write the remainder of the program.

Instructions

Write the C++ statements as indicated by the comments.

Execute the program by clicking the Run button at the bottom of the screen.

DRAFT:

// Calculator.cpp - This program performs arithmetic, ( +. -, *. / ) on two numbers.

// Input: Interactive

// Output: Result of arithmetic operation

#include

#include

using namespace std;

// Write performOperation() function declaration here

int performOperation(double numberOne, double numberTwo, string op);

int main()

{

double numberOne, numberTwo;

string operation;

double result;

cout << "Enter the first number: ";

cin >> numberOne;

cout << "Enter the second number: ";

cin >> numberTwo;

cout << "Enter an operator (+.-.*,/): ";

cin >> operation;

// Call performOperation method here

result = performOperation(numberOne,numberTwo,operation);

cout << numberOne;

cout << " " << operation << " ";

cout << numberTwo;

cout << " = ";

cout << result << endl;

return 0;

} // End of main() function

// Write performOperation function here

int performOperation(double numberOne, double numberTwo,std::string(op)){

double result;

if (op == "+")

result = numberOne + numberTwo;

else if (op == "-")

result = numberOne - numberTwo;

else if (op == "*")

result = numberOne*numberTwo;

else if (op == "/")

result = numberOne/numberTwo;

else

cout<<"Wrong input. Please try again.";

return result;

}

It's already working but it says that there's something wrong with the declared performOperation()

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

C++ Database Development

Authors: Al Stevens

1st Edition

1558283579, 978-1558283572

More Books

Students also viewed these Databases questions

Question

Review the determinants of direct financial compensation.

Answered: 1 week ago