迴文時間

import java.util.*; class Time{ int h; int m; Time(int h,int m){ this.h=h; this.m=m; } public void next() { for(m++;;m++) { if(m==60) { h++; m=0; if(h==24) { h=0; }
相關文章
相關標籤/搜索