Question: Write a C++ program to create your own text file using the given guidelines: Insert your student ID as a comment in the program. Create
Write a C++ program to create your own text file using the given guidelines:
Insert your student ID as a comment in the program. Create a macro with the symbol FAMILY_NAME and assign your family name to it. Declare all the necessary variables and file streams. Create and open your own file named myfinal.txt Read the number of clients Enter all the client details using the looping statement as follows: Client account number Client name Client salary per month Calculate bank loan amount and Instalment as per the following conditions: If client salary is more than 1800 then loan amount = 7 * client salary, Instalment = loan amount / 12, otherwise
loan amount = 4 * client salary, Instalment = loan amount / 24
Write(store) all the client details which include Account Number, Client name, Client salary, loan amount, and Instalment in the myfinal.txt file.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
