This assessment item relates to the unit learning outcomes as in the unit descriptors. This checks your understanding about basic constructs of C# programming.
In this assignment, you are required to develop TWO C# Console Programs to demonstrate your ability to use C# constructs including input/output via command line, C# primitive and built-in C# types, C# defined Objects, selection and looping statements, methods and various other C# commands. Your program must produce the correct results.
Write an application that inputs one number consisting of FIVE digits from the user, separates the number into its individual digits and prints the digit separated from one another by three spaces each. For example, if the user types in the number 42339, the program should print "4 2 3 3 9". Assume that the use enters correct number of units.
You are required to develop a C# application Named PayCalculator.cs that will determine the gross pay for each of three employees. The company pays straight time for the first 40 hours worked by each employee and time and a half for all hours worked in excess of 40 hours. You are given a list of the three employees of the company, the number of hours each employee worked last week and the hourly rate of each employee. Your application should input this information for each employee and should determine and display the employee's gross pay. Use the Console classs ReadLine method to input the data.