📄 tryndate.cpp
字号:
// Chapter 7 - Program 11
#include <iostream.h>
#include "newdate.h"
void main(void)
{
new_date now, later, birthday;
later.set_date(12, 31, 1991);
birthday.set_date(2, 19, 1991);
cout << "Today is day " << now.get_day_of_year() << "\n";
cout << "Dec 31 is day " << later.get_day_of_year() << "\n";
cout << "Feb 19 is day " << birthday.get_day_of_year() << "\n";
}
// Result of execution
// Today is day 20
// Dec 31 is day 365
// Feb 19 is day 50
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -