c語言之模擬時鐘秒錶

#include<stdio.h> struct clock { int minute; int hour; int second; }; typedef struct clock demo; demo b; void display()//顯示 { printf("%d:%d:%d\r",b.hour,b.minute,b.second); } void update()//時間的更新
相關文章
相關標籤/搜索