Based on the code that I already have, please help me complete it. I am attempting to use 2 functions with a created menu. Pls do not use another method of fixing my code but go with the code already given, my current code is giving error display for the switch statement. Proper parameters for the functions in the switch statement need to be adjusted. And the second function in the switch statement also has overloaded that need to get fixed. This code is something that Im working on my own, non related to school work. It is part of a book that I bought to continue practicing my coding skills through the summer so pls follow my requests, thank you

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Based on the code that I already have, please help me complete it. I am attempting to use 2 functions with a created menu. Pls do not use another method of fixing my code but go with the code already given, my current code is giving error display for the switch statement. Proper parameters for the functions in the switch statement need to be adjusted. And the second function in the switch statement also has overloaded that need to get fixed.

This code is something that Im working on my own, non related to school work. It is part of a book that I bought to continue practicing my coding skills through the summer so pls follow my requests, thank you

#include <iostream>

#include <string>

#include <iomanip>

using namespace std;

template <class T> T absolute(T val)

{ if (val < 0) return val * (-1); return val; }

void integer_call(int &x1, int &x2, int &x1_holding, int &x2_holding);

void double_call(double &y1, double &y2, double &y1_holding, double &y2_holding);

int main()

{

cout << fixed << showpoint << setprecision(2);

do

{

cout << "-------------------------------------------------\n";

cout << "\tAbsolute Value Template" << endl;

cout << "1) To test integers press 1." << endl;

cout << "2) To test doubles press 2." << endl;

cout << "0) To Quit" << endl;

char option[20]; cin >> option;

switch (atoi(option))

{

case 1: integer_call(); break;

case 2: double_call(); break;

default: exit(0);

}

}

while (true);

cout << endl;

system("pause");

return 0; 

void integer_call(int &x1, int &x2, int &x1_holding, int &x2_holding)

{

cout << "Please enter the 1st number as an integer: ";

cin >> x1;

cout << "Please enter the 2nd number as an integer: ";

cin >> x2;

x1_holding = absolute(x1);

cout << "\nAbsolute value of 1st number " << x1 << " is: " << x1_holding << endl;

x2_holding = absolute(x2);

cout << "Absolute value of 2nd number " << x2 << " is: " << x2_holding << endl;

}

void double_call(double &y1, double &y2, double y1_holding, double y2_holding)

{

cout << "Please enter the 1st number as a double: ";

cin >> y1;

cout << "Please enter the 2nd number as a double: ";

cin >> y2;

y1_holding = absolute(y1);

cout << "\nAbsolute value of 1st number " << y1 << " is: " << y1_holding << endl;

y2_holding = absolute(y2);

cout << "\nAbsolute value of 2nd number " << y2 << " is: " << y2_holding << endl;

}

 

Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Function Arguments
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education