【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
相关文章
相关标签/搜索