博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++期中考试
阅读量:5307 次
发布时间:2019-06-14

本文共 2302 字,大约阅读时间需要 7 分钟。

第一题1. 补足日期类实现,使得能够根据日期获取这是一年中第多少天。(12分)

date.h

1 #ifndef DATE_H 2 #define DATE_H 3  4 class Date { 5     public: 6         Date(); // 默认构造函数,将日期初始化为1970年1月1日  7         Date(int y, int m, int d); // 带有形参的构造函数,用形参y,m,d初始化年、月、日  8         void display(); // 显示日期  9         int getYear() const;  // 返回日期中的年份 10         int getMonth() const; // 返回日期中的月份 11         int getDay() const; // 返回日期中的日字 12         int dayOfYear(); // 返回这是一年中的第多少天13 14     private:15         int year;16         int month;17         int day;  18 };19 20 #endif

utils.h

1 // 工具包头文件,用于存放函数声明2  3 // 函数声明 4 bool isLeap(int);

date.cpp

1 #include "date.h" 2 #include "utils.h"  3 #include 
4 using std::cout; 5 using std::endl; 6 7 /* 8 class Date { 9 public:10 Date(); // 默认构造函数,将日期初始化为1970年1月1日 11 Date(int y, int m, int d); // 带有形参的构造函数,用形参y,m,d初始化年、月、日 12 void display(); // 显示日期 13 int getYear() const; // 返回日期中的年份 14 int getMonth() const; // 返回日期中的月份 15 int getDay() const; // 返回日期中的日字 16 int dayOfYear(); // 返回这是一年中的第多少天17 18 private:19 int year;20 int month;21 int day; */22 // 补足程序,实现Date类中定义的成员函数 23 Date::Date ():year(1970),month(1),day(1)24 {25 }26 Date::Date(int y,int m,int d):year(y),month(m),day(d)27 {28 29 }30 void Date::display()31 {32 cout<
<<'-'<
<<'-'<
<

main.cpp

1 #include "utils.h" 2 #include "date.h" 3  4 #include 
5 using namespace std; 6 int main() { 7 8 Date epochDate; 9 epochDate.display();10 cout << "是" <
<<"年第"<< epochDate.dayOfYear() << "天.\n\n" ;11 12 Date today(2019,4,30);13 14 today.display();15 cout << "是" <
<<"年第"<< today.dayOfYear() << "天.\n\n" ;16 17 Date tomorrow(2019,5,1);18 tomorrow.display();19 cout << "是" <
<<"年第"<< tomorrow.dayOfYear() << "天.\n\n";20 21 system("pause");22 return 0;23 }

utils.cpp

1 // 功能描述: 2 // 判断year是否是闰年, 如果是,返回true; 否则,返回false 3  4 bool isLeap(int year) {5     if( (year % 4 == 0  &&  year % 100 !=0) || (year % 400 == 0) )6         return true;7     else8         return false;9 }

转载于:https://www.cnblogs.com/knight04/p/10796018.html

你可能感兴趣的文章
xml.exist() 实例演示
查看>>
判断是否为空然后赋值
查看>>
zabbix监控日志文件
查看>>
正则表达式
查看>>
pip install torch on windows, and the 'from torch._C import * ImportError: DLL load failed:' s...
查看>>
环套树
查看>>
java基础(一):我对java的三个环境变量的简单理解和配置
查看>>
arcgis api 4.x for js 结合 Echarts4 实现散点图效果(附源码下载)
查看>>
YTU 2625: B 构造函数和析构函数
查看>>
apache自带压力测试工具ab的使用及解析
查看>>
C#使用Xamarin开发可移植移动应用(2.Xamarin.Forms布局,本篇很长,注意)附源码
查看>>
jenkins搭建
查看>>
C#中使用Split分隔字符串的技巧
查看>>
eclipse的调试方法的简单介绍
查看>>
加固linux
查看>>
IPSP问题
查看>>
HNU 10362 A+B for Input-Output Practice (II)
查看>>
10.17动手动脑
查看>>
WPF中Image显示本地图片
查看>>
Windows Phone 7你不知道的8件事
查看>>