关于钱能书上的一个例子.大家来找找错,看看怎么才能运行成功.

溺亡的鱼 2007-04-25 10:22:36
#include <iostream>
#include <iomanip>
using namespace std;
class Date
{
int year,month,day;
void init();
public:
Date(const string& s);
Date(int y=2000,int m=1,int d=1);
bool isLeapYear()const;
friend ostream& operator<<(ostream& o,const Date& d);
};
void Date::init()
{
if(y>5000||y<1||m<1||m>12||d<1||d>31)
exit(1);
}
Date::Date(int y,int m,int d)
{year=y;month=m;day=d;
init();}
Date::Date(const string& s)
{
year=atoi(s.substr(0,4).c_str());
month=atoi(s.substr(5,2).c_str());
day=atoi(s.substr(8,2).c_str());
init();
}
bool Date::isLeapYear()const
{return (year%4==0&&year%100)||year%400==0;}
ostream& operator<<(ostream& o,const Date& d)
{
o<<setfill('0')<<setw(4)<<d.year<<'-'<<setw(2)<<d.month<<'-';
return o<<setw(2)<<d.day<<'\n'<<setfill(' ');
}
int main()
{
Date c("2005-12-28");
Date d(2003,12,6);
Date e(2002);
Date f(2002,12);
Date g;
cout<<c<<d<<e<<f<<g;
}
...全文
172 1 打赏 收藏 转发到动态 举报
写回复
用AI写文章
1 条回复
切换为时间正序
请发表友善的回复…
发表回复
Generics 2007-04-25
  • 打赏
  • 举报
回复
if(y>5000||y<1||m<1||m>12||d<1||d>31)

========>

if(year>5000||year<1||month<1||month>12||day<1||day>31)

65,210

社区成员

发帖
与我相关
我的任务
社区描述
C++ 语言相关问题讨论,技术干货分享,前沿动态等
c++ 技术论坛(原bbs)
社区管理员
  • C++ 语言社区
  • encoderlee
  • paschen
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
  1. 请不要发布与C++技术无关的贴子
  2. 请不要发布与技术无关的招聘、广告的帖子
  3. 请尽可能的描述清楚你的问题,如果涉及到代码请尽可能的格式化一下

试试用AI创作助手写篇文章吧