#3456: 為啥測試原本答案和正確答案一'樣可是都NA


freck25815300 (a)

學校 : 國防大學
編號 : 9794
來源 : [140.129.111.11]
最後登入時間 :
2010-04-27 08:50:28
d066. 上學去吧! -- 板橋高中教學題 | From: [140.129.108.184] | 發表日期 : 2010-02-22 20:21

import java.util.*;

public class school{
 public static void main(String[] args){
  Scanner cin=new Scanner(System.in);
  while(cin.hasNext()) {
   int h=cin.nextInt();
   int m=cin.nextInt();
   if(h>=0&&h<7&&m>=00&&m<=59)
   System.out.println("off School");
   if(h==7&&m>=00&&m<30)
   System.out.println("off School");
   if(h==7&&m>=30&&m<=59)
   System.out.println("At School");
   if(h>7&&h<17&&m>=00&&m<=59)
   System.out.println("At School");
   if(h>=17&23>=h&&m>=00&&m<=59)
   System.out.println("off School");
   else
   break;
  }
 }
}
   

 
#3457: Re:為啥測試原本答案和正確答案一'樣可是都NA


linishan (L)

學校 : 國立交通大學
編號 : 1090
來源 : [104.132.150.102]
最後登入時間 :
2019-05-10 19:57:54
d066. 上學去吧! -- 板橋高中教學題 | From: [125.226.158.42] | 發表日期 : 2010-02-22 20:33

import java.util.*;

public class school{
 public static void main(String[] args){
  Scanner cin=new Scanner(System.in);
  while(cin.hasNext()) {
   int h=cin.nextInt();
   int m=cin.nextInt();
   if(h>=0&&h<7&&m>=00&&m<=59)
   System.out.println("off School");
   if(h==7&&m>=00&&m<30)
   System.out.println("off School");
   if(h==7&&m>=30&&m<=59)
   System.out.println("At School");
   if(h>7&&h<17&&m>=00&&m<=59)
   System.out.println("At School");
   if(h>=17&23>=h&&m>=00&&m<=59)
   System.out.println("off School");
   else
   break;
  }
 }
}
   

Off School

O為大寫 
ZeroJudge Forum