C語言實驗 時間間隔 sdut oj

2021-07-26 09:26:49 字數 514 閱讀 8485

time limit: 1000ms

memory limit: 65536kb

problem description

從鍵盤輸入兩個時間點(24小時制),輸出兩個時間點之間的時間間隔,時間間隔用「小時:分鐘:秒」表示。

如:3點5分25秒應表示為--03:05:25.假設兩個時間在同一天內,時間先後順序與輸入無關。

input

輸入包括兩行。

第一行為時間點1。

第二行為時間點2。

output

以「小時:分鐘:秒」的格式輸出時間間隔。

格式參看輸入輸出。

example input

12:01:12

13:09:43

example output

01:08:31

hint

author

#include int main()

C語言實驗 時間間隔

time limit 1000ms memory limit 65536kb submit statistic problem description 從鍵盤輸入兩個時間點 24小時制 輸出兩個時間點之間的時間間隔,時間間隔用 小時 分鐘 秒 表示。如 3點5分25秒應表示為 03 05 25.假設...

C語言實驗 時間間隔

time limit 1000 ms memory limit 65536 kib submit statistic problem description 從鍵盤輸入兩個時間點 24小時制 輸出兩個時間點之間的時間間隔,時間間隔用 小時 分鐘 秒 表示。如 3點5分25秒應表示為 03 05 25...

C語言實驗 時間間隔

problem description 從鍵盤輸入兩個時間點 24小時制 輸出兩個時間點之間的時間間隔,時間間隔用 小時 分鐘 秒 表示。如 3點5分25秒應表示為 03 05 25.假設兩個時間在同一天內,時間先後順序與輸入無關。input 輸入包括兩行。第一行為時間點1。第二行為時間點2。out...