Problem Solving with C++ Plus MyLab Programming with Pearson eText -- Access Card Package (10th Edition)
Problem Solving with C++ Plus MyLab Programming with Pearson eText -- Access Card Package (10th Edition)
10th Edition
ISBN: 9780134710747
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
Can it be ignored if a Master File has information that will be there for quite some time?
In this post, we will be discussing file extensions as well as the programs that are responsible for their creation. The provision of examples is absolutely necessary.
is it possible to just join both files together and for it to compile correctly?
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.
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