/* (程序头部注释开始)
* 程序的版权和版本声明部分
* Copyright (c) 2011, 烟台大学计算机学院学生
* All rights reserved.
* 文件名称: 输出时、分、秒
* 作 者:郭岩岩
* 完成日期:2012 年3 月5 日
* 版 本 号: vc.1
* 对任务及求解方法的描述部分
* 输入描述: 时、分、秒
* 问题描述:
#include <iostream>
using namespace std;
class Time
{
public: //定义为公共成员函数
void set_time(void) ;
void show_time(void);
private: //定义为私有的数据
int hour;
int minute;
int sec;
};
Time t;
int main()
{
t.set_time();//通过对象访问公共成员函数
t.show_time();
return 0;
}
void Time::set_time(void) //限定为为Time类中的set-time函数
{ //set-time应为空类型不返回值
cin>>t.hour;
cin>>t.minute;
cin>>t.sec;
}
void Time::show_time(void) //限定为为Time类中的set-time函数
{ //set-time应为空类型不返回值
cout<<t.hour<<":"<<t.minute<<":"<<t.sec<<endl;
}
* 程序输出:时、分、秒
* 程序头部的注释结束*/