作业3.输入一个年份,判断是闰年还是平年

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5
 6 namespace ConsoleApplication1
 7 {
 8     class 闰平年
 9     {
10         static void Main(string[] agre)
11         {
12             Console.Write("请输入一个年份:");
13             string a = Console.ReadLine();
14             int year = Convert.ToInt32(a);
15
16             if (year % 400 == 0)
17             {
18                 Console.WriteLine(year + "年是闰年");
19             }
20             else if (year % 4 == 0 && year % 100 != 0)
21             {
22                 Console.WriteLine(year + "年是闰年");
23
24             }
25             else
26             {
27                 Console.WriteLine(year + "年是平年");
28             }
29         }
30     }
31 }
时间: 2024-11-08 19:25:41

作业3.输入一个年份,判断是闰年还是平年的相关文章

输入一个年份,再输入一个月份,判断其是平年还是闰年,然后输出当前月份的天数。

#region 输入一个年份,再输入一个月份,判断其是平年还是闰年,然后输出当前月份的天数. Console.WriteLine("请输入一个年份"); int year = 0;//声明一个变量year,即年份 int month = 0;//声明一个变量month.即月份 int day = 0; //声明一个变量day,即天数 bool b = true;//声明一个变量b,即"是"或"否' //捕捉异常,判断用户输入的值是否合法 try { //当

4.C#-输入一个年份,判断是否是润年

{//逻辑运算符练习//输入一个年份,判断是否是润年Console.WriteLine("请输入一个年份"); //提示输入年份int year = Convert.ToInt32(Console.ReadLine()); //输入年份 //润年条件,年份能够被400整除,或者年份能被4整除但不能被100整除 bool b = (year % 400 == 0) || (year % 4 == 0 && year % 100 != 0); //输出结果 Console.

计算输入的年份是否为闰年,并利用条件运算符输入“是”或者“不是”

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConditionOperator{ class Program { static void Main(string[] args) { Console.Write("请输入一个年份:");//屏幕输入提示字符串 string strYear = Console.ReadLine();//获取用户输入的年

输入一个日期判断是否正确 javascript

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Typ

使用switch语句编程,根据输入的年份判断是否为闰年,根据输入的月份判断这月有多少天

#include <stdio.h> int main() { int year, month, flag = 0; printf("Enter Year And Month:!\n"); scanf("%d %d", &year, &month); if(year % 4 ==0 && year % 100 != 0 || year % 400 ==0) { flag = 1; printf("您所输入的年份是

输入一个年份,输出该年份的日历

假定输入的年份合法正确. 刚开始毫无思路,觉得很难,写着写着就有灵感了.其实不难,只要掌握好循环控制就好了.写完之后,感觉其实没什么想法.就直接粘代码吧. 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 void printf_cal(unsigned); 5 int is_leap_year(unsigned y); 6 unsigned days_in_year(unsigned y, unsigned m, unsigned d)

输入一个年份,判断该年份是否是闰年并输出结果。求它是否是闰年?要求:能被4整除不能被100整除或者能被400整除。

1 y=input('请输入年份:') 2 if(y%4==0 and y%100 != 0 or y%400 == 0): 3 print '%s是闰年'%(y) 4 else: 5 print '%s不是闰年' % (y) 原文地址:https://www.cnblogs.com/Python-XiaCaiP/p/8521486.html

判断输入的年份是否为闰年

#!/usr/bin/env python import sys def judge_year():     while True: try:     year = raw_input('please input a year: ') except (EOFError,KeyboardInterrupt):     print '\n'     sys.exit()         if len(year) == 0:     print 'input nothing,please try ag

20150910输入一个日期判断是这一年的第一天

bool isok = false;//用来记录日期是否正确 bool isrun = false;//用来判断是否是闰年 Console.Write("输入年:"); int year = int.Parse(Console.ReadLine()); Console.Write("输入月:"); int month = int.Parse(Console.ReadLine()); Console.Write("输入日:"); int day =