You have been approached by the Statistics Canada to create a C# program to calculate the average salary of people with university degrees and people with no postsecondary education. For each person processed, the program must input an education type (char) first (‘U’ or ‘u’ for university degrees, and ‘H’ or ‘h’ for high school) and then a salary (double)
You have been approached by the Statistics Canada to create a C# program to calculate the average salary of people with university degrees and people with no postsecondary education. For each person processed, the program must input an education type (char) first (‘U’ or ‘u’ for university degrees, and ‘H’ or ‘h’ for high school) and then a salary (double). The program stops accepting input when the user enters a ‘Q’ or ‘q’ for quit. The averages for each of the two types should be printed out. Be sure to print an error message if the user enters an invalid type or a negative salary. Q4: Write a C# program to compute the charge for a motel room. This program is to use a method called RoomCharge with 2 formal parameters: the number of days (an int), and the type of room (a char representing ‘S’ or ‘s’ for single, or ‘D’ or ‘d’ for double). The method should compute the charge and return the value to the Main method. You can assume a single room is $100, and double room is $150. Be sure to add 13% HST for the government. All input is to be done from the main program. Your main program should also a contain a loop which allows the user to compute more than one room charge if they wish (the program should continue until the user enters a ‘N’ or ‘n’). The method header for should look like: public static double RoomCharge(int numDays, char roomType) Q5: Write a C# program to help balance your bank account (assume that the initial balance is 0). The main program should repetitively prompt the user to enter a transaction (char) which could be ‘c’ or ‘C’ for cheque, ‘d’ or ‘D’ for deposit, ‘p’ or ‘P’ for print, and ‘q’ or ‘Q’ for quit. Using a switch statement, select the appropriate action and call the method. The program is to have three userdefined methods: (i) A void method called Cheque which accepts one reference parameter of type double which contains the account balance. Cheque prompts the user for the amount of the cheque and then deducts the amount of the cheque from the balance. A $1 service charge is applied to each cheque. The cheque (and the service charge) should not be applied if it would leave a negative balance and the customer should be warned. The method header should look like: public static void Cheque(ref double balance) (iii) A void function called Deposit which also accepts one reference parameter of type double which stores the account balance. Deposit prompts the user for the amount of the deposit and then adds the amount of the deposit to the balance. The method header should look like: public static void Deposit(ref double balance) (iv) A void function called Print which takes one value parameter of type double which contains the balance and then prints it out. The method header should look like: public static void Print(double balance) The main program should continue until the user enters a ‘Q’ or ‘q’. - See more at: http://www.essaysclub.net/c-program-to-compute-salary-of-people-with-and-without-university-degrees-and-high-school-certificates/#sthash.rmLwRwHG.dpuf
- CLICK HERE AND ORDER NOW……………………….
- Capitalessaywriting.com is a company which offers academic support and assistance to students. Our mission is to provide high quality academic services to our clients. This is done through quality writing and consistent follow-up of the students’ instructions. At Capitalessaywriting.com, we have highly qualified and competent writers to handle any of your projects. Our past quality projects and assignments ideally speak for themselves.
- CLICK HERE AND ORDER NOW……………………….
Comments
Post a Comment