麻烦各位帅哥美女帮我看看哪里错了。
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
string job = "科员";
if (job == "局长")
{
Console.WriteLine("发双黄月饼");
}
else if (job == "处长")
{
Console.WriteLine("发蛋黄月饼");
}
else if(job == "科长")//请输入
{
Console.WriteLine("发枣泥月饼");
}
else if(job == "其他人")//请输入
{
Console.WriteLine("发五仁月饼");
}
}
}
}