《C++上机实验报告实验一(1).pdf》由会员分享,可在线阅读,更多相关《C++上机实验报告实验一(1).pdf(3页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、.实验一 (1)实验目的:1.熟悉 Microsoft Visual C 6.0 集成开发环境 2.学习创建控制台应用程序项目 3.编辑源程序 4.编译和调试程序(2)实验要求:1.熟悉程序开发环境 2.编辑源程序 3.编译并调试程序 (3)实验内容及实验步骤 1.熟悉 Microsoft Visual Studio 6.0 的开发环境 2.编辑并调试下面的程序 注:工程中的文件包括三个:TimeType.h、TimeType.cpp、Diary.cpp(4)源程序:#include#includeTimeType.h /添加 TimeType.h 头文件 using namespace st
2、d;int main()TimeType time;/定义类类型的变量 time TimeType othertime;/定义类类型的另一变量 othertime int hours;int minutes;int seconds;coutEnter a time(use hourshoursminutesseconds;while(hours=0)/设置循环结束条件 time.Set(hours,minutes,seconds);/调用设置时间函数 time.Increment();/调用时间增秒函数 coutIncremented time is;time.Write();/调用打印函数打
3、印时间到屏幕上 coutendl;coutEnter a time(use hourshoursminutesseconds;/输入另一个类变量的数据成员值 othertime.Set(hours,minutes,seconds);if(time.Euqal(othertime)/判断两个时间是否相同 couttime is equal to othertimeendl;/while.return 0;头文件:#include using namespace std;class TimeType /TimeType 类定义 public:void Set(int hours,int minut
4、es,int seconds);/公有成员函数 void Increment();void Write();/const;bool Euqal(TimeType otherTime);/const;bool LessThan(TimeType otherTime);/const;private:/私有数据成员 int hrs;int mins;int secs;void TimeType:Set(int hours,int minutes,int seconds)hrs=hours;mins=minutes;secs=seconds;/给类中的数据成员赋值 void TimeType:Incr
5、ement()secs+;if(secs59)secs=0;mins+;if(mins59)mins=0;hrs+;if(hrs23)hrs=0;/Increment()将类中时间成员的值调整为下一秒的时间 void TimeType:Write()/const .couthrs:;if(mins10)cout0;coutmins:;if(secs10)cout0;coutsecs;/Write()输出完整时间 bool TimeType:Euqal(TimeType otherTime)return(hrs=otherTime.hrs&mins=otherTime.mins&secs=otherTime.secs);/返回布尔类型的值,若两个时间相等则返回 1 bool TimeType:LessThan(TimeType otherTime)return(hrsotherTime.hrs|hrs=otherTime.hrs&minsotherTime.mins|hrs=otherTime.hrs&mins=otherTime.mins&secsotherTime.secs);/若前一个输入的时间小于后一个时间,则返回 1 运行结果:心得体会:了解了类的基本使用规则,增强了编译调试的能力,加深了对面向对象的设计语言的理解。
限制150内