码迷,mamicode.com
首页 > 编程语言 > 详细

一个C++程序

时间:2018-03-29 22:34:56      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:日常

#include<iostream>
using namespace std;
class Time
{public:
int hour;
int minute;
int sec;
};

int main()
{
void set_time(Time&);
void show_time(Time&);
Time t1;
set_time(t1);
show_time(t1);
Time t2;
set_time(t2);
show_time(t2);
return 0;
}

void set_time(Time& t)
{
cin>>t.hour;
cin>>t.minute;
cin>>t.sec;
}

void show_time(Time& t)
{
cout<<t.hour<<":"<<t.minute<<":"<<t.sec<<endl;
}
技术分享图片

一个C++程序

标签:日常

原文地址:http://blog.51cto.com/13615683/2092715

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!