Answered step by step
Verified Expert Solution
Question
1 Approved Answer
C + + do not use vector, arrays, structures record use functions. Function 1 is supposed to read the data and return it to main.
C
do not use vector, arrays, structures record use functions.
Function is supposed to read the data and return it to main.
CS Programming Fundamentals for Computer Science Lab #B
Objectives
To learn to code, compile and run a program containing two or more functions.
Assignment
Plan and code a program utilizing one file for input and one file for output to solve the following problem: Write a complete program to calculate painting costs for customers of Top Quality Home Painting Service.
Function : Input
Input data from a file. One record of data contains the following sequence of data:
ABC
customer initials, customer account number digit integer the number of interior square feet to be painted, the cost per square foot for interior painting, the number of exterior square feet to be painted, the cost per square foot for exterior painting. Validate that no input is negative. If any data record contains an error, output the data to an error file with a message indicating what caused the error and do not produce a bill.
Function : Calculate. Determine the cost for interior painting, the cost for exterior painting, and the cost for the entire paint job. Any painting estimate greater than $ receives a discount.
Function : Output all data customer initials, customer account number, interior square feet, cost per interior square feet, exterior square feet, cost per exterior square feet, total interior cost, total exterior cost, any discount and total cost to an output file..
Create the data file below using your text editor or Notepad.
tableData File
ABC
DEF
GHI
JKL
MNO
PQR
STU
VWX
XYZ
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started