Question: Instructions Write a C# program named Projected Raises that includes a named constant representing next year's anticipated 4 percent raise for each employee in a

 Instructions Write a C# program named Projected Raises that includes anamed constant representing next year's anticipated 4 percent raise for each employeein a company. Also declare variables to represent the current salaries for

Instructions Write a C# program named Projected Raises that includes a named constant representing next year's anticipated 4 percent raise for each employee in a company. Also declare variables to represent the current salaries for three employees. Assign values to the variables, and display, with explanatory text, next year's salary for each employee. Note: For final submission assign the following current salaries for the employees: 25000 for employee 1, 38000 for employee 2, 51000 for employee 3. Then next year's salary for employee 1 would be displayed as: Next year's salary for the first employee will be $26,000.00 In order to prepend the $ to currency values, the program will need to use the Culture Info.GetCulture Info method. In order to do this, include the statement using System. Globalization; at the top of your program and format the output statements as follows: WriteLine("This is an example: {0}", value. ToString("C", CultureInfo.GetCultureInfo("en- US")); 1 using System; 2 using static System.Console; 3 using System. Globalization; 4 class ProjectedRaises 5 { static void Main() { // Write your main here } 10 } 6 7 8 9 11

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!