请大家看看哪里错了,并指出修正。谢谢
#include"iostream.h"Class Time
{
int h,m,s;
public:
void set(int x,int y,int z);
Time(int x=0,int y=0,int z=0);
void Display();
};
Time::Time(int x,int y,int z)
{
h=x;
m=y;
s=z;
}
void Time::set(int x,int y,int z)
{
h=x;
m=y;
s=z;
}
void Time::display()
{
cout<<h<<"时"<<m<<"分"<<s<<"秒"<<endl;
}
void main()
{
Time h;
h.display();
h.set(14,24,30);
h.display();
}
[ 本帖最后由 roje123 于 2010-6-23 18:40 编辑 ]