Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Please help me with 1, 3, 5, and 7!! C# ONLY. Show work please and thanks!! Programming Exercises The exercises in this section should look
Please help me with 1, 3, 5, and 7!! C# ONLY. Show work please and thanks!!
Programming Exercises The exercises in this section should look familiar to you. Each is similar to an exercise in Chapter 2 where you created solutions using console input and output. 1. Write a GUI program named InchesToCentimetersGUI that allows the user to input a measurement in inches, click a Button, and output the value in centimeters. There are 2.54 centimeters in an inch. 2. Write a GUI program named ProjectedRaisesGUI that allows a user to enter an employee's salary. Then display, with explanatory text, next year's salary, which reflects a 4 percent increase. Write a program named Move EstimatorGUI that prompts a user for the number of hours for a moving job and the number of miles involved in the move. After the user clicks a Button, display the moving fee which includes a base rate of $200 plus 3. $150 per hour and $2 per mile. Write a GUI program named EggsInteractiveGUI that allows a user to input the number of eggs produced in a month by each of five chickens. Sum the eggs, then display 4. the total in dozens and eggs. For example, a total of 127 eggs is 10 dozen and 7 eggs. 5. Write a GUI program named MakeChangeGUI that calculates and displays the conversion of an entered number of dollars into currency denominations-twenties tens, fives, and ones. For example, $113 is 5 twenties, 1 ten, 0 fives, and 3 ones. 6. Write a GUI program named TestsInteractiveGUI that allows a user to enter scores for five tests he has taken. Display the average of the test scores to two decimal places. 7. Create an enumeration named Month that holds values for the months of the year starting with JANUARY equal to 1. (Recall that an enumeration must be placed withirn a class but outside of any method.) Write a GUI program named MonthNamesGUI that prompts the user for a month integer. Convert the user's entry to a Month value and display it Pig Latin is a nonsense language. To create a word in pig Latin, you remove the first letter and then add the first letter and ay at the end of the word. For example, dog becomes ogday, and cat becomes atcay. Write a GUI program named PigLatinGUI 8. that allows the user to enter a word and displays the pig Latin versionStep 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