标签:des style color io os ar 数据 div sp
通过本题目的练习可以掌握类与对象的定义;
设计一个时间类Time,私有数据成员有hour(时)、minute(分)、second(秒);
公有成员函数有:setHour(int)设置数据成员hour的值,非法的输入默认为12;setMinue(int)设置数据成员minute的值,非法输入默认为0;setSecond(int)设置数据成员second的值,非法输入默认为0;setTime(int,int,int)设置时、分、秒三个数据成员的值; showTime()显示时间对象的值。
在主函数main()中调用相应成员函数,使得时间对象的值能从键盘接收,并正确显示。
输入3个整数,用一个空格间隔
输出 时、分、秒的值,中间用“:”间隔
10 11 12
10:11:12
#include <stdio.h> #include <string.h> #include <math.h> #include <stdlib.h> #include <iostream> #include <vector> #include <stack> using namespace std; class Time { private: int h,m,s; public: void setHour() { if(h>12||h<0) h=12; } void setMin() { if(m>60||m<0) m=0; } void setSec() { if(s<0||s>60) s=0; } void setTime() { cin>>h>>m>>s; } void showTime() { if (h<10) cout<<"0"; cout<<h<<":"; if (m<10) cout<<"0"; cout<<m<<":"; if (s<10) cout<<"0"; cout<<s<<endl; } }; int main() { class Time xx; xx.setTime(); xx.setHour(); xx.setMin(); xx.setSec(); xx.showTime(); return 0; }
标签:des style color io os ar 数据 div sp
原文地址:http://blog.csdn.net/qq_16255321/article/details/39213121