20181031

#代码 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { Console.WriteLine("请输入年份"); int year = Convert.ToInt32(Console.ReadLine()); bool b =year%400==0 || year%4==0 && year%100!=0; Console.WriteLine(b); Console.ReadKey(); } } } #效果

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • …作业1…语文成绩大于90并且音乐成绩大于80,则奖励100元.…代码…using System;using Sy...
    楚荷音阅读 2,586评论 0 0
  • …作业1…要求用户输入两个数a、b,如果a被b整除或者a加b大于100,则输出a的值,否则输出b的值…代码…usi...
    楚荷音阅读 2,532评论 0 0
  • using System; using System.Collections.Generic; using Sys...
    PANGTIANLONG阅读 2,383评论 0 0
  • 2017/10/29 1.C#基础语法: 矩阵类的实现 using System; using System.Co...
    文袁阅读 3,520评论 0 0
  • 现要开发一款魔法师迷你游戏平台,主要功能如下(1) . 用户可以进入游戏平台并选择喜爱的游戏。…using S...
    楚荷音阅读 1,742评论 0 0