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

为什么会有这个警告?Program.cs(11,17): warning CS0219: The variable `year' is assigned but its value is never used Compilation succeeded - 1 warning(s) 今年是平年

using System;

using System.Collections.Generic;

using System.Text;


namespace Test

{

    class Program

    {

        static void Main(string[] args)

        {

            int year = 2015;//年份

            string text;

           text= 2015%4==0?"闰年":"平年";//请填写代码

            Console.WriteLine("今年是{0}",text);

        }

    }

}


正在回答

1 回答

应该是

text=year%4==0?"闰年":"平年"

搜索

复制

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

举报

0/150
提交
取消

为什么会有这个警告?Program.cs(11,17): warning CS0219: The variable `year' is assigned but its value is never used Compilation succeeded - 1 warning(s) 今年是平年

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