码迷,mamicode.com
首页 > 其他好文 > 详细

设计MyTime类 代码参考

时间:2020-03-28 17:53:51      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:str   settime   else   div   lse   span   namespace   nbsp   min   

 1 #include <iostream>
 2 #include <cstdio>
 3 
 4 using namespace std;
 5 
 6 class MyTime
 7 {
 8     private:
 9         int hour;
10         int minute;
11         int second;
12     public:
13         void SetTime(){cin>>hour>>minute>>second;return;}
14         void print_12();
15         void print_24();
16 };
17 
18 void MyTime::print_12()
19 {
20     if(hour<12)
21     {
22         printf("%02d:%02d:%02d AM\n",hour,minute,second);
23     }
24     else
25     {
26         printf("%02d:%02d:%02d PM\n",hour-12,minute,second);
27     }
28     return;
29 }
30 
31 void MyTime::print_24()
32 {
33     printf("%02d:%02d:%02d\n",hour,minute,second);
34     return;
35 }
36 
37 int main()
38 {
39     MyTime one;
40     one.SetTime();
41     one.print_12();
42     one.print_24();
43     return 0;
44 }

 

设计MyTime类 代码参考

标签:str   settime   else   div   lse   span   namespace   nbsp   min   

原文地址:https://www.cnblogs.com/Conan-jine/p/12588156.html

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