闰年

c++ 闰年的判断

有些话、适合烂在心里 提交于 2020-03-16 18:10:22
c++ 闰年的判断 输入一个年份判断是否为闰年 源代码如下: # include "stdafx.h" # include <iostream> ; using namespace std ; int _tmain ( int argc , _TCHAR * argv [ ] ) { int n ; cout << "请输入一个年份" << endl ; cin >> n ; if ( n % 4 == 0 && n % 100 != 0 || n % 400 == 0 ) //能被4整除,并且 不能被100整除。 { cout << n << "年是闰年" << endl ; } else { cout << n << "年不是闰年" << endl ; } return 0 ; } 运行结果如下: 来源: CSDN 作者: Arana-- 链接: https://blog.csdn.net/weixin_44387644/article/details/104826266

闰年的判断方法 和 当目前为止你生存的天数计算方法

好久不见. 提交于 2020-03-16 09:22:47
import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Scanner; public class work2 { 闰年判断方法 public static void main(String[] args) throws ParseException{   good(); } /*public static void good() throws ParseException{ SimpleDateFormat time=new SimpleDateFormat("yyyy-MM-dd"); Scanner sc=new Scanner(System.in); System.out.println("请输入年份"); int i=sc.nextInt(); Date date1=time.parse(i+"-1-31");//某年1月31号 long ss=date1.getTime(); System.out.println(ss); Date date2=time.parse(i+"-3-1");//某年3月1号 long ss1=date2.getTime(); System.out.println(ss1); long

计算闰年的第一种方法

喜你入骨 提交于 2020-03-16 09:20:10
      public class Calendardome {         //闰年计算 将日历设置到指定的年份 3月1日 add 向前偏移一天             //获取天数 29为闰年          public static void main(String[] args) {               fun(); }         public static void fun(){          //使用calendar 获取一个新的实例          Calendar c=Calendar.getInstance();              //添加日期           c.set(2009,2,1);                 //偏移向前偏移一天          c.add(Calendar.DAY_OF_MONTH, -1);             //Get 获取天数        int day=c.get(Calendar.DAY_OF_MONTH);        System.out.println(day);   //打印天数        if(day==28){       使用if 语句判断是否是闰年        System.out.println("不是闰年");      }else {  

蓝桥杯_基础_闰年判断+01字串+字母图形

故事扮演 提交于 2020-02-28 22:14:02
闰年判断 import java.util.Scanner; public class Main { // 先判断400的情况,在判断4和100的情况 public static void main(String[] args) { int year = new Scanner(System.in).nextInt(); if(year % 400 == 0){ System.out.println("yes"); } else if((year % 4) == 0 && (year % 100) != 0){ System.out.println("yes"); } else{ System.out.printf("no"); } } } 01字串 import java.util.*; // 2进制 利用嵌套for循环 public class Main{ public static void main(String args[]){ for(int a = 0;a < 2;a++) for(int b = 0;b < 2;b++) for(int c = 0;c < 2;c++) for(int d = 0;d < 2;d++) for(int e = 0;e < 2;e++) System.out.println(a+""+b+""+c+""+d+""+e); } }

C# DateTime 工具类

核能气质少年 提交于 2020-02-18 18:42:21
项目gitHub地址 点我跳转 今天给大家带来一个C#里面的时间工具类,具体的直接看下面代码 1 using System; 2 3 namespace ToolBox.DateTimeTool 4 { 5 public static class DateTimeExtend 6 { 7 /// <summary> 8 /// 获取本日开始时间(0点0分0秒) 9 /// </summary> 10 /// <param name="dateTime"></param> 11 /// <returns></returns> 12 public static DateTime GetDayStart(this DateTime dateTime) 13 { 14 return dateTime.Date; 15 } 16 17 /// <summary> 18 /// 获取本日结束时间(23点59分59秒) 19 /// </summary> 20 /// <param name="dateTime"></param> 21 /// <returns></returns> 22 public static DateTime GetDayEnd(this DateTime dateTime) 23 { 24 return dateTime.Date.AddDays(1)

Python3 实例--Python 判断闰年

|▌冷眼眸甩不掉的悲伤 提交于 2020-02-12 15:32:32
#代码如下下: #Python3 实例--Python 判断闰年: print ( "Python3 实例--Python 判断闰年:" ) #原则:非整百数,能被4整除的为闰年 # 整百数能被400整除的为闰年, def run_year ( x ) : if ( x % 4 ) == 0 : if ( x % 100 ) == 0 : if ( x % 400 ) == 0 : print ( "{}年是闰年" . format ( x ) ) else : print ( "{}年是平年" . format ( x ) ) else : print ( "{}年是闰年" . format ( x ) ) else : print ( "{}年是平年" . format ( x ) ) run_year ( int ( input ( ) ) ) #运行结果如下: Python3 实例–Python 判断闰年: 1995 1995年是平年 来源: CSDN 作者: qq_33410995 链接: https://blog.csdn.net/qq_33410995/article/details/104276819

统计1500-2019年闰年的个数

半城伤御伤魂 提交于 2020-02-02 08:47:51
统计1500-2019年闰年的个数 思路: 闰年的判断条件:能整除4且不能整除100;或者能整除400; 代码实现: int main(){ int i,count=0; for(i=1500;i<=2020;i++) if(i%4==0&&i%100!=0||i%400==0) count++; printf("%d",count); } 来源: CSDN 作者: 西装Baby 链接: https://blog.csdn.net/qq_20185737/article/details/104135490

闰年判断

心已入冬 提交于 2020-01-31 21:07:11
问题描述 给定一个年份,判断这一年是不是闰年。 当以下情况之一满足时,这一年是闰年: 1. 年份是4的倍数而不是100的倍数; 2. 年份是400的倍数。 其他的年份都不是闰年。 输入格式 输入包含一个整数y,表示当前的年份。 输出格式 输出一行,如果给定的年份是闰年,则输出yes,否则输出no。 说明:当试题指定你输出一个字符串作为结果(比如本题的yes或者no,你需要严格按照试题中给定的大小写,写错大小写将不得分。 样例输入 2013 样例输出 no 样例输入 2016 样例输出 yes 数据规模与约定 1990 <= y <= 2050。 #include<iostream> using namespace std; void Judge(int n) { if((n%4==0&&n%100!=0)||(n%400==0))cout<<"yes"<<endl; else cout<<"no"<<endl; } int main() { int n; cin>>n; Judge(n); return 0; } 来源: CSDN 作者: 2304 链接: https://blog.csdn.net/weixin_43673589/article/details/104125112

Python_判断闰年

故事扮演 提交于 2020-01-19 17:49:51
取余、比较运算符、逻辑运算符的应用 ''' 一个年份 如果是闰年输出True,否则输出False ''' #定义函数 def is_leap_year ( year ) : if year % 4 == 0 and year % 100 != 0 or year % 400 == 0 : return True return False #测试 print ( is_leap_year ( 2020 ) ) 运行结果 True 来源: CSDN 作者: Rookie_Max 链接: https://blog.csdn.net/Rookie_Max/article/details/104041493