標籤:

一個計科小白的每日編程打卡18.07.31

一個計科小白的每日編程打卡18.07.31

/*C++time1.cpp ---使用含成員函數的類來處理時間的輸入和輸出*/#include<iostream>using namespace std;class Time{public: void set_time(); void show_time();private: int hour; int minute; int sec;};int main(){ Time t1; t1.set_time(); t1.show_time(); Time t2; t2.set_time(); t2.show_time(); getchar(); getchar(); return 0;}void Time::set_time(){ cin>>hour; cin>>minute; cin>>sec;}void Time::show_time(){ cout<<hour<<":"<<minute<<":"<<sec<<endl;}

/*The results are as follows:*/


推薦閱讀:

深入理解計算機系統(六):進位間的轉換原理
Leetcodes Solutions 7 Reverse Integer
Leetcodes Solution 46 Permutations
Leetcodes Solution 43 Multiply Strings
一步步教你編寫不可維護的 PHP 代碼

TAG:編程 |