Question
Using the language in which you have chosen to focus: C#, Java, Web Development languages (PHP and JavaScript)In this hypothetical scenario, you will create a
Using the language in which you have chosen to focus: C#, Java, Web Development languages (PHP and JavaScript)In this hypothetical scenario, you will create a program that will allow a student to register for certification classes in HVAC. The school offers a $150 discount if the student signs up for twenty or more unit-hours. Students may also pay the tuition costs over a twelve-month period.
Assessment Requirements
- Your program should declare variables using the appropriate data types to store the following string values.
Name: John Smith
Address: 101 N. Main Street
City: AnyTown
State: TX
Units Taken: 19
-
For the price per unit, declare a constant numeric variable to contain the decimal value 100.50.
-
For the twenty unit-hour discount, declare a constant numeric variable to contain the whole number 150.
-
Convert the string value for Units Taken to an integer data type andplace the converted numeric value into a separate numeric variable. Hint: Use the same name but add the prefix int such as intUnitsTaken.
-
Using the increment operator, increment the variable above by 1 so that the value 19 will now be 20.
-
Multiply the constant variable for price per unit by the units taken and place the answer in a variable named tuition.
-
Subtract the constant discount value from tuition and store the answer in a variable named afterDiscount.
-
Divide the discounted tuition by 12 and store the answer in a variable named monthlyPayment.
-
Finally, your program will display the following data using the respective variables for each item:
Name
Address
City
State
Zip Code
Number of units taken (numeric value that was incremented)
Tuition before discount
Tuition after discount
Monthly Payment
Include labels for each item as shown in expected output. Format the tuition values and monthly payment as currency.
EXPECTED OUTPUT
Name: John Smith
Address: 101 N. Main Street
City: Anytown
State: TX
Zip Code: 11111
The number of units taken is: 20
The tuition before discount is $2,010.00
The tuition after twenty-unit discount is $1,860.00
Your monthly payment is $155.00
The source code file is the file in your project that contains the code you wrote. Below are listed the file extensions for the source code file for each language:
.cs file for C#
.java file for Java
.php and.js files for web development
Need source code file saved as IT213M1_JACKSON_LANGUAGE
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