Question
ITE-5230-IGA Assignment 1 09-02-23 In this assignment, you work on multiple problems to write C# programs (using methods is not required for this assignment): Problem
ITE-5230-IGA Assignment 1 09-02-23
In this assignment, you work on multiple problems to write C# programs (using methods is not required for this assignment):
Problem 1
Create an app that calculates the future value of the investment.
To calculate a future value, the user must enter the monthly investment amount, the yearly interest rate, and the number of years the investment will be made.
Convert Yearly Interest Rate to Monthly Interest Rate.
Convert Number of Years to Number of Months.
Formula to calculate Future Value:
futureValue = (futureValue + monthlyInvestment) * (1 + monthlyInterestRate);
Problem 2
Sales Commission Calculator: A large company pays its salespeople on a commission basis.
The salespeople receive $200 per week plus 9% of their gross sales for that week.
For example, a salesperson who sells $5,000 worth of merchandise in a week receives $200 plus 9% of $5,000, or a total of $650.
Youve been supplied with a list of the items sold by each salesperson.
The values of these items are as follows:
Item Value
1 239.99
2 129.75
3 99.95
4 350.89
Develop a C# app that inputs one salespersons items sold for the last week, then calculates and displays that salespersons earnings.
Theres no limit to the number of items that can be sold by a salesperson.
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