クラス、メンバー関数、出力時間を含む.
949 ワード
// 121217 8.3.cpp : 。
//
/*
* Copyright (c) 2012,
* All rights reserved.
* :
* :2012 12 17
* :v1.0
*
* :
* : , , 。
* :
* :
* :
*/
#include "stdafx.h"
#include<iostream>
using namespace std;
class time// time
{
public:
void set_time();//
void show_time();
private://
int hour;
int minute;
int sec;
};
int main()
{
time t1,t2;//
t1.set_time();// t1 , t1
t1.show_time();// t1 , t2
t1.set_time();
t1.show_time();
cout<<endl;
return 0;
}
// set_time
void time ::set_time()
{
cin>>hour>>minute>>sec;
}
// show_time
void time ::show_time()
{
cout<<hour<<" "<<minute<<" "<<sec;
}