帮忙看看哪里错了,查了很久了?
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
{
Console.WriteLine("发五仁月饼");
}
}
}
}