欢迎来到天天文库
浏览记录
ID:59057375
大小:40.39 KB
页数:3页
时间:2020-09-14
《C++上机实验报告实验一(1).pdf》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、.实验一(1)实验目的:1.熟悉MicrosoftVisualC++6.0集成开发环境2.学习创建控制台应用程序项目3.编辑源程序4.编译和调试程序(2)实验要求:1.熟悉程序开发环境2.编辑源程序3.编译并调试程序(3)实验内容及实验步骤1.熟悉MicrosoftVisualStudio6.0的开发环境2.编辑并调试下面的程序注:工程中的文件包括三个:TimeType.h、TimeType.cpp、Diary.cpp(4)源程序:#include#include"TimeType.h"//添加TimeType.h头文件usingnam
2、espacestd;intmain(){TimeTypetime;//定义类类型的变量timeTimeTypeothertime;//定义类类型的另一变量othertimeinthours;intminutes;intseconds;cout<<"Enteratime(usehours<0toquit):";cin>>hours>>minutes>>seconds;while(hours>=0)//设置循环结束条件{time.Set(hours,minutes,seconds);//调用设置时间函数time.Increment();//调用时间增秒函数cout<<"Increm
3、entedtimeis";time.Write();//调用打印函数打印时间到屏幕上cout<>hours>>minutes>>seconds;//输入另一个类变量的数据成员值othertime.Set(hours,minutes,seconds);if(time.Euqal(othertime))//判断两个时间是否相同cout<<"timeisequaltoothertime"<#include<
4、iostream>usingnamespacestd;classTimeType{//TimeType类定义public:voidSet(inthours,intminutes,intseconds);//公有成员函数voidIncrement();voidWrite();//const;boolEuqal(TimeTypeotherTime);//const;boolLessThan(TimeTypeotherTime);//const;private://私有数据成员inthrs;intmins;intsecs;};voidTimeType::Set(inthours,in
5、tminutes,intseconds){hrs=hours;mins=minutes;secs=seconds;}//给类中的数据成员赋值voidTimeType::Increment(){secs++;if(secs>59){secs=0;mins++;if(mins>59){mins=0;hrs++;if(hrs>23)hrs=0;}}}//Increment()将类中时间成员的值调整为下一秒的时间voidTimeType::Write()//const{'..cout<6、ecs<10)cout<<'0';cout<7、8、hrs==otherTime.hrs&&mins9、10、hrs==o11、therTime.hrs&&mins==otherTime.mins&&secs
6、ecs<10)cout<<'0';cout<7、8、hrs==otherTime.hrs&&mins9、10、hrs==o11、therTime.hrs&&mins==otherTime.mins&&secs
7、
8、hrs==otherTime.hrs&&mins9、10、hrs==o11、therTime.hrs&&mins==otherTime.mins&&secs
9、
10、hrs==o
11、therTime.hrs&&mins==otherTime.mins&&secs
此文档下载收益归作者所有