【c++程序】時鐘程序

#include<iostream> using namespace std; #include<ctime> struct Time{ int hour; int minute; int second; }; void set(Time *p,int h,int m,int s) { p->hour=h; p->minute=m; p->second=s; } void tick(T
相關文章
相關標籤/搜索