标题:[求助]帮忙看看这个程序
取消只看楼主
kcsjyyy
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2006-5-31
 问题点数:0 回复次数:0 
[求助]帮忙看看这个程序

//clock
#include<iostream.h>
class Time
{public:
Time()
{hour=0;
minute=0;
second=0;
}
void set_time();
void show_time();
private:
int hour;
int minute;
int second;
};
void Time::set_time ()
{cin>>hour;
cin>>minute;
cin>>second;
}
void Time::show_time ()
{cout<<hour<<":"<<minute<<":"<<second<<endl;
}

int main()
{
Time t1;
t1.set_time();
t1.show_time();
Time t2;
t2.show_time();
return 0;
}
帮忙看看这个程序怎么老是出现error LNK2001: unresolved external symbol _WinMain@16错误




搜索更多相关主题的帖子: private include public minute second 
2007-03-09 14:50



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-123361-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.798471 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved