codecamp

第一次成功分文件编程……

mian.cpp
#include"iostream.h"
#include"myTime.h"
void main()
{
 CmyTime time;
 int hour,minute,second;
 cin>>hour>>minute>>second;
 time.setTime(hour,minute,second);
 cout<<"this time is ";
 time.showTime();
}
mytime.cpp
#include"iostream.h"
#include"myTime.h"
void CmyTime::setTime(int nHour,int nMinute,int nSecond)
{
 hour=(nHour>=0&&nHour<24)?nHour:0;
 minute=(nMinute>=0&&nMinute<60)?nMinute:0;
 second=(nSecond>=0&&nSecond<60)?nSecond:0;
}
void CmyTime::showTime()
{
 cout<<hour<<":"<<minute<<":"<<second<<endl;
}
mytime.h
class CmyTime
{
private:
 int hour;
 int minute;
 int second;
public:
 void setTime(int nHour,int nMinute,int nSecond);
 void showTime();
};
BAT命令大全(转)
加快Windows XP的启动(摘抄笔记)
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }