李四的年终工作评定

/**李四的年终工作评定

 * 如果定为A级,则工资涨500元

* 如果定为B级,则工资涨200元

* 如果定为C级,则工资不变

 * 如果定为D级,则工资降200元

 * 如果定为E级,则工资降500元

 * */

 int salary = 5000;

 Console.WriteLine("请输入对李四的年终评定");

 string level = Console.ReadLine();//A B C D 乱七八糟

 if (level == "A")

{

salary += 500;//salary=salary+500;

 }

else if (level == "B")

{

salary += 200;\

 }

 else if (level == "C")

 {

 salary += 0;

}

else if (level == "D")

 {

 salary -= 200;

 }

 else if (level == "E")

 {

 salary -= 500;

 }

 else

{

Console.WriteLine("输入有误,程序退出!");

 }

 Console.WriteLine("李四明年的工资是{0}", salary);

Console.ReadKey();

你可能感兴趣的:(李四的年终工作评定)