Toggle navigation
Courses
問題
標籤
用戶
AC時間的比較(以結構方式完成)
1
喜歡
0
不喜歡
349
瀏覽
讓使用者輸入三個時間,依照時間由晚到早輸出。
example input:
12 30 23 40 12 34
22 30 20 31 17 12
example output:
23:40 12:34 12:30
22:30 20:31 17:12
[正常]
開放式問答
-
最新提問
12月 30, 2016
分類:
2016-1 程式設計(一)AC
|
ID: 20246 -
從幾時開始:
無限制
-
到幾時結束:
無限制
重新顯示
1月 5, 2017
用戶:
Shun-Po
|
349
瀏覽
評論
請
登錄
或者
註冊
後再添加評論。
3
個回答
0
喜歡
0
不喜歡
內容已隱藏#include <stdio.h>
typedef struct time{int hour;int min;}time;
int main (void)
{
time a[3];
int i,hour,time;