小明负责发月饼。根据职务不同,局长发双黄的,处长发蛋黄的,科长发枣泥的,其他人发五仁的。
请在第 20 和第 24 行输入合适的代码
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("发蛋黄月饼"); } //请输入 { Console.WriteLine("发枣泥月饼"); } //请输入 { Console.WriteLine("发五仁月饼"); } } } }