美文网首页
第四次作业第二题

第四次作业第二题

作者: 皮皮虾_98e9 | 来源:发表于2018-10-31 14:51 被阅读0次

代码

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
/**
* 让用户输入一个年份,如果是润年,则输出true,如果不是,则输出false.
* */
Console.WriteLine("请输入年份:");
int year = Convert.ToInt32(Console.ReadLine());
bool b=year%400==0;
bool a = year % 4 == 0 && year % 100 != 0;
bool c = b || a;
Console.WriteLine("这个年份是否为润年:{0}",c);
Console.ReadKey();
}

效果

IMG_0101.JPG

相关文章

网友评论

      本文标题:第四次作业第二题

      本文链接:https://www.haomeiwen.com/subject/ngjatqtx.html