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()//时间的更新
相关文章
相关标签/搜索