C++实现日期相关OJ题

x33g5p2x  于2021-10-28 转载在 C/C++  
字(3.9k)|赞(0)|评价(0)|浏览(598)

日期差值

题目描述
有两个日期,求两个日期之间的天数,如果两个日期是连续的我们规定他们之间的天数为两天

输入描述

有多组数据,每组数据有两行,分别表示两个日期,形式为YYYYMMDD

输出描述

每组数据输出一行,即日期差值

示例1

输入:

  1. 20110412
  2. 20110422

输出:

  1. 11

解题代码

  1. #include<iostream>
  2. using namespace std;
  3. class Date
  4. {
  5. public:
  6. // 获取某年某月的天数
  7. int GetMonthDay(int year, int month)
  8. {
  9. //下标对应月,数据是当月天数
  10. int MonthDays[] = {0,31,28,31,30,31,30,31,31,30,31,30,31 };
  11. //闰年的话,二月加一天
  12. if (month == 2 && ((year%4 == 0 && year%100 != 0)||year % 400 == 0))
  13. MonthDays[2]++;
  14. return MonthDays[month];
  15. }
  16. // 全缺省的构造函数
  17. Date(int year = 1900, int month = 1, int day = 1)
  18. :_year(year),_month(month),_day(day)
  19. {}
  20. bool operator < (const Date& d)
  21. {
  22. if (_year < d._year)
  23. return true;
  24. else if (_year == d._year && _month < d._month)
  25. return true;
  26. else if (_year == d._year && _month == d._month && _day < d._day)
  27. return true;
  28. else
  29. return false;
  30. }
  31. // ==运算符重载
  32. bool operator==(const Date& d)
  33. {
  34. return _year == d._year && _month == d._month && _day == d._day;
  35. }
  36. // !=运算符重载
  37. bool operator != (const Date& d)
  38. {
  39. return !(*this == d);
  40. }
  41. // 日期+=天数
  42. Date& operator+=(int day)
  43. {
  44. _day += day;
  45. while (_day > GetMonthDay(_year, _month))
  46. {
  47. _day -= GetMonthDay(_year, _month);
  48. _month++;
  49. if (_month == 13)
  50. {
  51. //年进位
  52. _year++;
  53. _month = 1;//月更新
  54. }
  55. }
  56. return *this;
  57. }
  58. // 日期-日期 返回天数
  59. int operator-(const Date& d)
  60. {
  61. //找出大的日期和小的日期
  62. Date max = *this;
  63. Date min = d;
  64. if (*this < d)
  65. {
  66. max = d;
  67. min = *this;
  68. }
  69. int count = 0;
  70. while (max != min)
  71. {
  72. min+=1;
  73. count++;
  74. }
  75. return count+1;
  76. }
  77. private:
  78. int _year;
  79. int _month;
  80. int _day;
  81. };
  82. int main()
  83. {
  84. int date1,date2;
  85. int year1,month1,day1,year2,month2,day2;
  86. while (cin>>date1>>date2)
  87. {
  88. year1 = date1 / 10000, month1 = date1 % 10000 / 100, day1 = date1 % 100;
  89. year2 = date2 / 10000, month2 = date2 % 10000 / 100, day2 = date2 % 100;
  90. Date d1(year1, month1, day1);
  91. Date d2(year2, month2, day2);
  92. cout<<(d1-d2)<<endl;
  93. }
  94. return 0;
  95. }

计算日期到天数转换

题目描述
根据输入的日期,计算是这一年的第几天。保证年份为4位数且日期合法。

输入描述

输入一行,每行空格分割,分别是年,月,日

输出描述

输出是这一年的第几天

示例1

输入:

  1. 2012 12 31

输出:

  1. 366

解题代码

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. //monthDays[i]存的是1+2+......+i月的天数
  6. int monthDays[]={0,31,59,90,120,151,181,212,243,273,304,334,365};
  7. int year,month,day;
  8. cin>>year>>month>>day;
  9. int n=monthDays[month-1]+day;
  10. //大于二月并且是闰年:
  11. if(month>2&&((year%4==0 && year%100!=0) || year %400 == 0))
  12. n++;
  13. cout<<n<<endl;
  14. return 0;
  15. }

求1+2+3+…+n

题目描述
求1+2+3+…+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。

输入描述

输入1+2+3…+n中的n是多少

返回值描述

返回是1+2+3+…+n的值

示例1

输入:

  1. 5

返回值:

  1. 15

解题代码

  1. class Solution
  2. {
  3. public:
  4. int Sum_Solution(int n)
  5. {
  6. Sum a[n];
  7. return _ret;
  8. }
  9. private:
  10. class Sum//内部类,天生就是Solution的友元类,可以访问Solution的私有
  11. {
  12. public:
  13. Sum()
  14. {
  15. _ret+=_i;
  16. _i++;
  17. }
  18. };
  19. static int _i;
  20. static int _ret;
  21. };
  22. int Solution::_i=1;
  23. int Solution::_ret=0;

日期累加

题目描述
设计一个程序能计算一个日期加上若干天后是什么日期。

输入描述

输入第一行表示样例个数m,接下来m行每行四个整数分别表示年月日和累加的天数。

输出描述

输出m行,每行按yyyy-mm-dd的个数输出。

示例1

输入:

  1. 1
  2. 2008 2 3 100

输出:

  1. 2008-05-13

解题代码

  1. #include<iostream>
  2. using namespace std;
  3. // 获取某年某月的天数
  4. int GetMonthDay(int year, int month)
  5. {
  6. //下标对应月,数据是当月天数
  7. int MonthDays[] = { 0,31,28,31,30,31,30,31,31,30,31,30,31 };
  8. //闰年的话,二月加一天
  9. if (month == 2 && ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0))
  10. MonthDays[2]++;
  11. return MonthDays[month];
  12. }
  13. int main()
  14. {
  15. // 日期+=天数
  16. int year, month, day, days;
  17. int m = 0;
  18. cin>>m;
  19. while(m--)
  20. {
  21. cin >> year >> month >> day >> days;
  22. if (days > 0)
  23. {
  24. day += days;
  25. while (day > GetMonthDay(year, month))
  26. {
  27. day -= GetMonthDay(year, month);
  28. month++;
  29. if (month == 13)
  30. {
  31. //年进位
  32. year++;
  33. month = 1;//月更新
  34. }
  35. }
  36. printf("%04d-%02d-%02d\n",year,month,day);
  37. }
  38. else
  39. {
  40. day += days;
  41. while (day <= 0)
  42. {
  43. month--;
  44. if (month == 0)
  45. {
  46. month = 12;
  47. year--;
  48. }
  49. day += GetMonthDay(year, month);
  50. }
  51. printf("%04d-%02d-%02d\n",year,month,day);
  52. }
  53. }
  54. return 0;
  55. }

打印日期

题目描述
给出年分m和一年中的第n天,算出第n天是几月几号。

输入描述

输入包括两个整数y(1<=y<=3000),n(1<=n<=366)。

输出描述

可能有多组测试数据,对于每组数据, 按 yyyy-mm-dd的格式将输入中对应的日期打印出来。

示例1

输入:

  1. 2000 3
  2. 2000 31
  3. 2000 40
  4. 2000 60
  5. 2000 61
  6. 2001 60

输出:

  1. 2000-01-03
  2. 2000-01-31
  3. 2000-02-09
  4. 2000-02-29
  5. 2000-03-01
  6. 2001-03-01

解题代码

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int year,num;
  6. while(cin>>year>>num)
  7. {
  8. //下标对应月份,元素就是该月的天数
  9. int monthDays[]={0,31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
  10. int month = 1;//控制月份
  11. while(num>monthDays[month])
  12. {
  13. if((year%4==0 && year%100!=0)||year%400 == 0)
  14. {
  15. monthDays[2]=29;
  16. }
  17. num-=monthDays[month];//减去该月的天数
  18. month++;
  19. }
  20. printf("%04d-%02d-%02d",year,month,num);
  21. }
  22. return 0;
  23. }

相关文章

最新文章

更多