首页
题库
面试
求职
学习
竞赛
More+
所有博客
搜索面经/职位/试题/公司
搜索
我要招人
去企业版
登录 / 注册
首页
>
试题广场
>
日期差值
[编程题]日期差值
热度指数:43248
时间限制:C/C++ 1秒,其他语言2秒
空间限制:C/C++ 64M,其他语言128M
算法知识视频讲解
有两个日期,求两个日期之间的天数,如果两个日期是连续的我们规定他们之间的天数为两天
输入描述:
有多组数据,每组数据有两行,分别表示两个日期,形式为YYYYMMDD
输出描述:
每组数据输出一行,即日期差值
示例1
输入
20110412 20110422
输出
11
马上挑战
算法知识视频讲解
提交运行
算法知识视频讲解
添加笔记
求解答(31)
邀请回答
收藏(157)
分享
提交结果有问题?
175个回答
99篇题解
开通博客
健康快乐最重要
发表于 2020-03-13 10:33:30
计算两个日期相对于0000 00 00的差值然后差值相减取绝对值+1就可以了。 #include<iostream> using namespace std; int daytab[2][13]={ {0,31,28,31,30,31,30,31,31,30,31,30,
展开全文
薇薇啵啵
发表于 2020-04-09 00:28:34
解题思路:令日期不断加1天,直到第一个日期等于第二个日期为止。 #include <iostream> #include <cstdio> using namespace std; int month[13][2]={//平年和闰年的天数 {0,0},{3
展开全文
ks颜熙
发表于 2024-01-22 17:12:04
#include <iostream> using namespace std; int GetMonthDay(int y, int m) { int month[] = { 0, 31, 28, 31, 30, 31, 30, 31,31, 30, 31, 30, 31 }
展开全文
夜奏花
发表于 2022-06-22 10:46:12
#include <bits/stdc++.h> using namespace std; int day[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; int leap(int year){ if((year%4==0 &&
展开全文
牛客652687585号
发表于 2022-01-20 22:52:53
#include<iostream> #include<cstdio> using namespace std; int DayTab[2][13] = { {0,31,28,31,30,31,30,31,31,30,31,30,31}, &nbs
展开全文
FredaLiu
发表于 2020-03-02 11:39:11
include include /* run this program using the console pauser or add your own getch, system("pause") or input loop /using namespace std;//用来判断平年还闰年的函数,
展开全文
牛客1号~
发表于 2023-12-20 14:13:39
#include <iostream> using namespace std; //计算当年月和日的天数 int GetMonthDay(int year, int month, int day) { int GetMonthday[13] = {0,31,59,90,120,
展开全文
灵槐梦
发表于 2024-02-19 21:17:26
一种比较优雅的解法(少了很多判断) #include <iostream> using namespace std; int MonthArray[] = { 0,31,28,31,30,31,30,31,31,30,31,30,31 }; int GetMonth_day(int ye
展开全文
渺小小螃蟹
发表于 2021-05-07 22:28:05
include<stdio.h> include<stdbool.h> include<stdlib.h> int daytab[2][13] ={ {0,31,28,31,30,31,30,31,31,30,31,30,31}, {0,31,29,3
展开全文
万千少男的梦
发表于 2024-04-17 22:09:23
#include <climits> #include <iostream> using namespace std; class Date { //friend ostream& operator<<(ostream& out, const D
展开全文
问题信息
模拟
基础数学
难度:
175条回答
157收藏
14914浏览
热门推荐
通过挑战的用户
查看代码
在参加牛客活动...
2023-03-12 21:58:00
爱吃蛋挞a
2023-03-09 00:25:42
海边的少年
2023-03-08 12:40:39
wff13
2023-03-07 15:04:17
white3zz1
2023-03-06 21:16:24
相关试题
一个10*10的矩阵(可以理解为棋...
去哪儿
模拟
评论
(0)
一个文件里有10万个随机正整数,按...
去哪儿
堆
模拟
评论
(4)
线段树编号问题
基础数学
评论
(2)
编程题 ,按照要求创建Java 应...
Java
评论
(1)
说出3个获取用户需求的方法并简述其...
用户研究
评论
(1)
日期差值
扫描二维码,关注牛客网
意见反馈
下载牛客APP,随时随地刷题
20110412 20110422
11