为了账号安全,请及时绑定邮箱和手机立即绑定

帮忙看看哪里错了,查了很久了?

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("发五仁月饼");
            }
        }
    }
}

正在回答

2 回答

好像是对的,看看运行报错的地方,可能是标点的中文字符。

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("发五仁月饼");
            }
        }
    }
}

我的运行成功了

0 回复 有任何疑惑可以回复我~

没有声明数组

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

帮忙看看哪里错了,查了很久了?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信