DIRECTIONS –  in the TEXTBOX PROVIDED- type the ENTIRE C++ P…

Written by Anonymous on June 2, 2026 in Uncategorized with no comments.

Questions

DIRECTIONS –  in the TEXTBOX PROVIDED- type the ENTIRE C++ PROGRAM REQUIRED bаsed оn the PROGRAM SPECIFICATIONS. ========== Here аre оther Requirements in аdditiоn to the SPECIFIC PROGRAM SPECIFICATIONS that must be implemented in your c++ CODING: Part 1: The program will use numeric (int and float) and non-numeric(string) data types. Part 2: The program will have the CONSTANT KNOWN INPUT VALUES to be used for ‘DETAIL CALCULATIONS’ ================================= Part 3: The program will have a “do..while” loop to allow for multiple transactions based on user input *** After the program prompts or ask the user for interactive data needed for the DETAIL CALCULATIONS, it will then ask the user if they have record to enter or to process. **  If so, the program will  repeat the process of asking the user for the interactive input, detail calculations and the displaying of the detail output. ****** Part 4: The program will accept the following numeric and non-numeric data as interactive input  from the user to use to calculate the needed ‘DETAIL CALCULATIONS’. Part 5: The program will calculate the  REQUIRED ‘DETAIL CALCULATED VALUES’ Part 6: The program will print/display the  REQUIRED ‘DETAIL OUTPUT VALUES’ ********************************************************************************* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& 191/193A-SUMMER 2026- EXAM-1- PROGRAM SPECIFICATIONS TO USE PART 2- CONSTANT KNOWN INPUT VALUES:  State is AL (non-numeric) RENT is 500 – (no decimal) Phone discount is 3 (no decimal) PART 4- USER INTERACTIVE INPUT VALUES First name (non-numeric value) City (BHM, TUSC, or ATL) – non-numeric value Charge per Phone (25.00 – 50.00)- (decimal value) No of phones (1, 3, 5)-no decimal Power bill (25 – 200)- no decimal PART 5- DETAIL CALCULATIONS REQUIRED:  (all have decimal values) Customer phone discount rate   IS FOUND BY.. dividing the phone discount by 100 Charge for all phones   IS FOUND BY.. MULTIPLYING no of phones by the charge per phone Net due for phones   IS FOUND BY  FIRST SUBTRACTING the Customer phone discount rate from 1..  Then.. MULTIPLYING this by the Charge for all phones Amt due   IS FOUND BY adding together: net due for phones, rent and the power bill. PART 6- DETAIL OUTPUT to BE DISPLAYED – LINE 1: ******************************** LINE 2: FIRST NAME IS _______ LINE 3: AMT DUE IS ____ NET DUE FOR PHONES IS ____ LINE 4: PHONE DISCOUNT RATE IS ____ LINE 5: CHARGE FOR ALL PHONES IS ___  LINE 6: ****************************************

Comments are closed.