Write a program that allows the user to enter the number of for-credit classes in which they have enrolled at a college, and the number of non-credit classes in which they have enrolled, and the amount of financial aid they receive. Assume that each for-credit class is 3 credit hours, and the fee per credit hour is $159; for the non-credit classes, assume that the fee for each class is $59. The program must then output the student's bill, including total credit hours in which they have enrolled, the totals for for-credit classes and for non-credit classes, and the total for all classes, and finally, how much they owe after financial aid has been applied. In this program, declare the following constants: Name CREDIT HOURS_PER_CLASS Value Data-type integer 3 floating 159 FEE PER CREDIT HOUR NON CREDIT CLASS FEE floating 59 In this program, declare the following variables: Name creditClasses nonCreditClasses financialAid totalCreditHours creditClasses Fee nonCreditClasses Fee totalFee totalowed Data-type integer integer floating integer floating floating floating floating

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter5: Control Structures Ii (repetition)
Section: Chapter Questions
Problem 20PE: When you borrow money to buy a house, a car, or for some other purpose, you repay the loan by making...
icon
Related questions
Question
Problem 2
Write a program that allows the user to enter the number of for-credit classes in which they have
enrolled at a college, and the number of non-credit classes in which they have enrolled, and the
amount of financial aid they receive. Assume that each for-credit class is 3 credit hours, and the
fee per credit hour is $159; for the non-credit classes, assume that the fee for each class is $59.
The program must then output the student's bill, including total credit hours in which they have
enrolled, the totals for for-credit classes and for non-credit classes, and the total for all classes,
and finally, how much they owe after financial aid has been applied.
In this program, declare the following constants:
Name
CREDIT HOURS PER CLASS
Data-type
Value
integer 3
FEE PER CREDIT HOUR
floating 159
NON CREDIT CLASS FEE floating 59
In this program, declare the following variables:
Name
creditClasses
nonCreditClasses
financialAid
Data-type
integer
integer
floating
totalCreditHours
integer
creditClassesFee
floating
nonCreditClasses Fee floating
floating
floating
totalFee
totalowed
File
5
6
7
8
*505
Practice CIT 120.txt Xnew 1 x new 2 x new 3 X
1 startprogram CreditHourCaculator
2
3
4
9
10
11
12
13
14
15
16
in
17
10
18
19
20
21
22
Edit Search View
23
24
25
26
27
28
29
30
31
Encoding Language
Language Settings
startmain
const integer CREDIT HOURS PER CLASS = 3
const floating FEE_PER_CREDIT_HOUR = 159
P
const floating NON_CREDIT_CLASS_FEE = 59
inter
integer creditClasses
S
integer nonCreditClasses
flosti
floating financialAid
integer totalCreditHours
floating creditClasses Fee
floating totalFee
floating totalowed.
output "Welcome tp the CreditHourCaculator!"
output "This program will calcuylate the
Kun
lools Macro
output "Please enter the number of credit classes: "
input creditClasses
output "Please enter the number of non-credit classes: "
input nonCreditClasses
input financialAid
Plugins Window
10
financialAid "Please enter the amount of financialAid recie
totalFee =|
totalCreditHours = creditClasses - nonCreditClasses
totalowed =
Transcribed Image Text:Problem 2 Write a program that allows the user to enter the number of for-credit classes in which they have enrolled at a college, and the number of non-credit classes in which they have enrolled, and the amount of financial aid they receive. Assume that each for-credit class is 3 credit hours, and the fee per credit hour is $159; for the non-credit classes, assume that the fee for each class is $59. The program must then output the student's bill, including total credit hours in which they have enrolled, the totals for for-credit classes and for non-credit classes, and the total for all classes, and finally, how much they owe after financial aid has been applied. In this program, declare the following constants: Name CREDIT HOURS PER CLASS Data-type Value integer 3 FEE PER CREDIT HOUR floating 159 NON CREDIT CLASS FEE floating 59 In this program, declare the following variables: Name creditClasses nonCreditClasses financialAid Data-type integer integer floating totalCreditHours integer creditClassesFee floating nonCreditClasses Fee floating floating floating totalFee totalowed File 5 6 7 8 *505 Practice CIT 120.txt Xnew 1 x new 2 x new 3 X 1 startprogram CreditHourCaculator 2 3 4 9 10 11 12 13 14 15 16 in 17 10 18 19 20 21 22 Edit Search View 23 24 25 26 27 28 29 30 31 Encoding Language Language Settings startmain const integer CREDIT HOURS PER CLASS = 3 const floating FEE_PER_CREDIT_HOUR = 159 P const floating NON_CREDIT_CLASS_FEE = 59 inter integer creditClasses S integer nonCreditClasses flosti floating financialAid integer totalCreditHours floating creditClasses Fee floating totalFee floating totalowed. output "Welcome tp the CreditHourCaculator!" output "This program will calcuylate the Kun lools Macro output "Please enter the number of credit classes: " input creditClasses output "Please enter the number of non-credit classes: " input nonCreditClasses input financialAid Plugins Window 10 financialAid "Please enter the amount of financialAid recie totalFee =| totalCreditHours = creditClasses - nonCreditClasses totalowed =
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Constants and Variables
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
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning