Time類定義

import java.util.*; class Time{ int h; int m; int s; public Time(int h,int m,int s) { if(h<=0||h>12) h=12; this.h=h; if(m<0||m>59) m=0; this.m=m; if(s<0||s>59) s=0; this.s=s;
相關文章
相關標籤/搜索