慕仔4599520
2022-05-06 16:45
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);
}
}
}
应该是
text=year%4==0?"闰年":"平年"
搜索
复制
C#开发轻松入门
254118 学习 · 1459 问题
相似问题