【c++】日期类相关实践:计算日期到天数转换、日期差值

2024-09-01 03:04

本文主要是介绍【c++】日期类相关实践:计算日期到天数转换、日期差值,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

 相关文章:日期类(运算符重载应用)详细版


目录

前言

实践1:计算日期到天数转换

题目

方法

关键代码

完整代码

实践2:日期差值

题目

方法

关键代码

完整代码 

💗感谢阅读!💗


前言

在上篇文章中(【c++】类与对象实践:日期类(运算符重载应用)详细版),我们对日期类进行一个完整的实现!

那么接下来我们可以学以致用,完成下列题目!

计算日期到天数转换_牛客题霸_牛客网

日期差值_牛客题霸_牛客网 (nowcoder.com)

实践1:计算日期到天数转换

题目

​​​​​计算日期到天数转换_牛客题霸_牛客网 (nowcoder.com)

方法

获取每月天数  int GetMonthDays(int year, int month) ;

判断闰年:

不能被100整除能被4整除 或 能被400整除。
平年二月28天;
闰年29天。
1 3 5 7 8 10 12 月有31天
4 6 9 11 月有30天

日期类中实现的前置++重载, Date& operator++() ;

日期类中实现的工具方法,日期差值计算  int operator-(const Date& d) const ;

关键代码

int GetMonthDays(int year, int month) {static int monthDays[13] {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};if (month == 2 && ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0))return 29;elsereturn monthDays[month];}Date& operator++() {*this += 1;return *this;}int operator-(const Date& d) const {Date max = *this;Date min = d;int flag = 1;int cnt = 0;if (*this < d) {max = d;min = *this;flag = -1;}while (min != max) {++cnt;++min;}return cnt * flag;}int TheDayOfYear() {return (*this - Date(_year, 1, 1)) + 1;}

完整代码

#include <iostream>
using namespace std;
class Date {public:Date(int year = 0, int month = 0, int day = 0) {_year = year;_month = month;_day = day;}bool operator>(const Date& d) const {if (this->_year > d._year)return true;else if (this->_year == d._year && this->_month > d._month)return true;else if (this->_year == d._year && this->_month == d._month &&this->_day > d._day)return true;elsereturn false;}bool operator==(const Date& d) const {if (this->_year == d._year&& this->_month == d._month&& this->_day == d._day)return true;elsereturn false;}bool operator!=(const Date& d) const {return !(*this == d);}bool operator<(const Date& d) const {return !(*this > d || *this == d);}Date& operator-=(int day) {if (day < 0) {*this += -day;return *this;}_day -= day;while (_day <= 0) {_month--;if (_month == 0) {_month = 12;_year--;}_day += GetMonthDays(_year, _month);}return *this;}Date& operator+=(int day) {if (day < 0) {*this -= -day;return *this;}_day += day;while (_day > GetMonthDays(_year, _month)) {_day -= GetMonthDays(_year, _month);_month++;if (_month == 13) {_month = 1;_year++;}}return *this;}int GetMonthDays(int year, int month) {static int monthDays[13] {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};if (month == 2 && ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0))return 29;elsereturn monthDays[month];}Date& operator++() {*this += 1;return *this;}int operator-(const Date& d) const {Date max = *this;Date min = d;int flag = 1;int cnt = 0;if (*this < d) {max = d;min = *this;flag = -1;}while (min != max) {++cnt;++min;}return cnt * flag;}int TheDayOfYear() {return (*this - Date(_year, 1, 1)) + 1;}private:int _year;int _month;int _day;
};int main() {int year, month, day;while (cin >> year >> month >> day) {Date d(year, month, day);cout << d.TheDayOfYear() << endl;}return 0;
}

实践2:日期差值

题目

日期差值_牛客题霸_牛客网 (nowcoder.com)

方法

轻而易举,在日期类中,我们已经实现了对于计算日期差值的工具方法。

对于这道题目,我们可以直接套用!!

关键代码

 void getDaynums(const Date& d) {Date max = d;Date min = *this;if (!(max > min)) {max = *this;min = d;}int day = 0;while (min != max) {min++;day++;}day++;cout << day << endl;}

完整代码 

#define _CRT_SECURE_NO_WARNINGS 1
#include <iostream>
using namespace std;class Date {private:int  _year;int _day;int _month = 0;int getMonthDay(int year, int month) {int monthArr[13] = { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };//闰年 二月不同if (month == 2 && ((year % 400 == 0) || (year % 4 == 0 && year % 100 != 0))) {return 29;}return monthArr[month];}public:Date(int year, int month, int day) : _year(year), _month(month), _day(day) {  }bool operator>(const Date& d) {if (_year > d._year) {return true;} else if (_year == d._year && _month > d._month) {return true;} else if (_year == d._year && _month == d._month && _day > d._day) {return true;}return false;}bool operator==(const Date& d) {if (_year == d._year && _month == d._month && _day == d._day) {return true;}return false;}Date& operator-=(int day) {if (day < 0) {return *this += (-day);}_day -= day;while (_day < 0) {_month--;if (_month == 0) {_month = 12;_year--;}_day += getMonthDay(_year, _month);}return *this;}bool operator != (const Date& d) {if (*this == d)return false;return true;}Date& operator+=(int day) {// a+=b,a本身变化了,因此最后返回aif (day < 0) {return *this -= day;}_day += day;while (_day > getMonthDay(_year, _month)) { //天数已经超过当前月份_day -= getMonthDay(_year, _month);_month++;if (_month > 12) {_year++;_month = 1;}}return *this;}Date operator++(int) {Date temp(*this);*this += 1;return temp;}void getDaynums(const Date& d) {Date max = d;Date min = *this;if (!(max > min)) {max = *this;min = d;}int day = 0;while (min != max) {min++;day++;}day++;cout << day << endl;}};int main() {int day1, day2, mon1, mon2, year1, year2;scanf("%4d%2d%2d", &year1, &mon1, &day1);scanf("%4d%2d%2d", &year2, &mon2, &day2);Date d(year1, mon1, day1);Date d2(year2, mon2, day2);d.getDaynums(d2);
}
// 64 位输出请用 printf("%lld")

💗感谢阅读!💗


这篇关于【c++】日期类相关实践:计算日期到天数转换、日期差值的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1125765

相关文章

Spring Boot 配置文件之类型、加载顺序与最佳实践记录

《SpringBoot配置文件之类型、加载顺序与最佳实践记录》SpringBoot的配置文件是灵活且强大的工具,通过合理的配置管理,可以让应用开发和部署更加高效,无论是简单的属性配置,还是复杂... 目录Spring Boot 配置文件详解一、Spring Boot 配置文件类型1.1 applicatio

Java实现时间与字符串互相转换详解

《Java实现时间与字符串互相转换详解》这篇文章主要为大家详细介绍了Java中实现时间与字符串互相转换的相关方法,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、日期格式化为字符串(一)使用预定义格式(二)自定义格式二、字符串解析为日期(一)解析ISO格式字符串(二)解析自定义

在java中如何将inputStream对象转换为File对象(不生成本地文件)

《在java中如何将inputStream对象转换为File对象(不生成本地文件)》:本文主要介绍在java中如何将inputStream对象转换为File对象(不生成本地文件),具有很好的参考价... 目录需求说明问题解决总结需求说明在后端中通过POI生成Excel文件流,将输出流(outputStre

tomcat多实例部署的项目实践

《tomcat多实例部署的项目实践》Tomcat多实例是指在一台设备上运行多个Tomcat服务,这些Tomcat相互独立,本文主要介绍了tomcat多实例部署的项目实践,具有一定的参考价值,感兴趣的可... 目录1.创建项目目录,测试文China编程件2js.创建实例的安装目录3.准备实例的配置文件4.编辑实例的

python+opencv处理颜色之将目标颜色转换实例代码

《python+opencv处理颜色之将目标颜色转换实例代码》OpenCV是一个的跨平台计算机视觉库,可以运行在Linux、Windows和MacOS操作系统上,:本文主要介绍python+ope... 目录下面是代码+ 效果 + 解释转HSV: 关于颜色总是要转HSV的掩膜再标注总结 目标:将红色的部分滤

Python 中的异步与同步深度解析(实践记录)

《Python中的异步与同步深度解析(实践记录)》在Python编程世界里,异步和同步的概念是理解程序执行流程和性能优化的关键,这篇文章将带你深入了解它们的差异,以及阻塞和非阻塞的特性,同时通过实际... 目录python中的异步与同步:深度解析与实践异步与同步的定义异步同步阻塞与非阻塞的概念阻塞非阻塞同步

Python Dash框架在数据可视化仪表板中的应用与实践记录

《PythonDash框架在数据可视化仪表板中的应用与实践记录》Python的PlotlyDash库提供了一种简便且强大的方式来构建和展示互动式数据仪表板,本篇文章将深入探讨如何使用Dash设计一... 目录python Dash框架在数据可视化仪表板中的应用与实践1. 什么是Plotly Dash?1.1

C++ 中的 if-constexpr语法和作用

《C++中的if-constexpr语法和作用》if-constexpr语法是C++17引入的新语法特性,也被称为常量if表达式或静态if(staticif),:本文主要介绍C++中的if-c... 目录1 if-constexpr 语法1.1 基本语法1.2 扩展说明1.2.1 条件表达式1.2.2 fa

利用Python开发Markdown表格结构转换为Excel工具

《利用Python开发Markdown表格结构转换为Excel工具》在数据管理和文档编写过程中,我们经常使用Markdown来记录表格数据,但它没有Excel使用方便,所以本文将使用Python编写一... 目录1.完整代码2. 项目概述3. 代码解析3.1 依赖库3.2 GUI 设计3.3 解析 Mark

JavaScript Array.from及其相关用法详解(示例演示)

《JavaScriptArray.from及其相关用法详解(示例演示)》Array.from方法是ES6引入的一个静态方法,用于从类数组对象或可迭代对象创建一个新的数组实例,本文将详细介绍Array... 目录一、Array.from 方法概述1. 方法介绍2. 示例演示二、结合实际场景的使用1. 初始化二