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

习题9-1 时间换算

时间:2019-12-26 09:51:05      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:style   time   mamicode   int   image   code   图片   turn   void   

技术图片

 1 #include <stdio.h>
 2 
 3 struct time
 4 {
 5     int hour;
 6     int minute;
 7     int second;
 8 };
 9 int main(void)
10 {
11     int n, temp;
12     struct time t1;
13 
14     scanf("%d:%d:%d", &t1.hour, &t1.minute, &t1.second);
15     scanf("%d", &n);
16 
17     t1.second = t1.second + n;
18     temp = t1.second / 60;
19     t1.second = t1.second % 60;
20 
21     t1.minute = t1.minute + temp;
22     temp = t1.minute / 60;
23     t1.minute = t1.minute % 60;
24 
25     t1.hour = t1.hour + temp;
26     t1.hour = t1.hour % 24;
27 
28     printf("%02d:%02d:%02d\n", t1.hour, t1.minute, t1.second);
29 
30     return 0;
31 }

习题9-1 时间换算

标签:style   time   mamicode   int   image   code   图片   turn   void   

原文地址:https://www.cnblogs.com/2018jason/p/12100203.html

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