Problem Solving with C++ (9th Edition)
Problem Solving with C++ (9th Edition)
9th Edition
ISBN: 9780133591743
Author: Walter Savitch
Publisher: PEARSON
bartleby

Concept explainers

Question
Book Icon
Chapter 12, Problem 1PP
Program Plan Intro

Percentage Calculation

Program Plan:

ADT interface filename: “Percent.h”

  • Include required header files.
  • Define a class “Percent”.
    • Declare function for overload operator “==” and “<”.
    • Declare default constructor for “Percent” class.
    • Declare a constructor for “Percent” class with one integer parameter.
    • Declare function for input overload operator and output overload operator.
    • Declare function for binary overload operators “+”, “-” and “*”.
    • Declare a member variable “value”.

ADT implementation filename: “Percent.cpp”

  • Include required header files.
  • Define default constructor for “Percent” class.
    • Here assign the value of “value” to “0”.
  • Define constructor for “Percent” class with one integer parameter “percentValue”.
    • In this constructor, assign “value” to “percentValue”.
  • Define a function for overload operator “<”.
    • This function is used to check whether the first percent is less than second percent or not.
  • Define a function for overload operator “==”.
    • This function is used to check whether the two percent’s are equal or not.
  • Define a function for input operator “>>”.
  • Define a function for input operator “<<”.
  • Define a function for binary overload operator “+” to compute the sum of two percentages.
    • In this function, create an object “sum”.
    • Then compute the addition of two percent’s.
    • Finally returns the result of addition.
  • Define a function for binary overload operator “-” to compute the subtraction of two percentages.
    • In this function, create an object “s”.
    • Then compute the subtraction of two percent’s.
    • Finally returns the result of subtraction.
  • Define a function for binary overload operator “*” to compute the multiplication of one percent and an integer value.
    • In this function, create an object “m”.
    • Then compute the multiplication of one percent and an integer value.
    • Finally returns the result of multiplication.

Application filename: “main.cpp”

  • Include required header files.
  • Define main function.
    • Create two objects “percent1” and “percent2” from “Percent” class.
    • Create an object “percent3” with one integer parameter “10”.
    • Declare an integer variable “intValue”.
    • Read the percentage 1 and percentage 2 from user.
    • Check the two percentages using “==” operator.
    • Check the two percentages using “<” operator.
    • Create an object “sumPercent” from “Percent” class.
    • Then compute and display sum of two percentages.
    • Create an object “subPercent” from “Percent” class.
    • Then compute and display difference of two percentages.
    • Display percentage 3 from assigned value.
    • Read an integer from user to multiply with a percentage 3.
    • Finally compute and display the multiplication of “percent3” and a user entered integer value.

Blurred answer
Students have asked these similar questions
Problem Statement You are working as a Devops Administrator. Y ou’ve been t asked to deploy a multi - tier application on Kubernetes Cluster. The application is a NodeJS application available on Docker Hub with the following name: d evopsedu/emp loyee This Node JS application works with a mongo database. MongoDB image is available on D ockerHub with the following name: m ongo You are required to deploy this application on Kubernetes: • NodeJS is available on port 8888 in the container and will be reaching out to por t 27017 for mongo database connection • MongoDB will be accepting connections on port 27017 You must deploy this application using the CL I . Once your application is up and running, ensure you can add an employee from the NodeJS application and verify by going to Get Employee page and retrieving your input. Hint: Name the Mongo DB Service and deployment, specifically as “mongo”.
I need help in server client project. It is around 1200 lines of code in both . I want to meet with the expert online because it is complicated. I want the server send a menu to the client and the client enters his choice and keep on this until the client chooses to exit . the problem is not in the connection itself as far as I know.I tried while loops but did not work. please help its emergent
I need help in my server client in C language
Knowledge Booster
Background pattern image
Computer Science
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
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education