#3289: 哪裡錯?(Java)


ycy1896 (D)

學校 : 國立嘉義女子高級中學
編號 : 10565
來源 : [111.71.54.21]
最後登入時間 :
2019-02-20 09:12:23
d050. 妳那裡現在幾點了? -- 板橋高中教學題 | From: [219.81.237.109] | 發表日期 : 2010-01-18 11:33

import java.util.Scanner;
public class time {   
public static void main(String[] args) {       
Scanner cin = new Scanner(System.in);     
  int a=0,b=0; 
while (cin.hasNext()) {           
a=cin.nextInt();

if(a>=16&&a<=23)
{
b=a-15;
System.out.println(b);
}
else if(a<=15&&a>=0)
{
b=23-a;
System.out.println(b);
}
else
System.out.println("The time is over 0~23");
}
}
}

 
#3292: Re:哪裡錯?(Java)


example (學姊)

學校 : 臺北市立麗山高級中學
編號 : 6634
來源 : [60.250.138.144]
最後登入時間 :
2022-08-09 17:07:42
d050. 妳那裡現在幾點了? -- 板橋高中教學題 | From: [118.166.117.253] | 發表日期 : 2010-01-18 16:54

import java.util.Scanner;
public class time {   
public static void main(String[] args) {       
Scanner cin = new Scanner(System.in);     
  int a=0,b=0; 
while (cin.hasNext()) {           
a=cin.nextInt();

if(a>=16&&a<=23)
{
b=a-15;
System.out.println(b);
}
else if(a<=15&&a>=0)
{
b=23-a;
System.out.println(b);
}
else
System.out.println("The time is over 0~23");
}
}
}

 你可以把台灣幾點時美國幾點寫一張表出來

 歸納一下結果再把他寫成程式碼

 
#3296: Re:哪裡錯?(Java)


ycy1896 (D)

學校 : 國立嘉義女子高級中學
編號 : 10565
來源 : [111.71.54.21]
最後登入時間 :
2019-02-20 09:12:23
d050. 妳那裡現在幾點了? -- 板橋高中教學題 | From: [219.81.237.109] | 發表日期 : 2010-01-18 23:34

import java.util.Scanner;
public class time {   
public static void main(String[] args) {       
Scanner cin = new Scanner(System.in);     
  int a=0,b=0; 
while (cin.hasNext()) {           
a=cin.nextInt();

if(a>=16&&a<=23)
{
b=a-15;
System.out.println(b);
}
else if(a<=15&&a>=0)
{
b=23-a;
System.out.println(b);
}
else
System.out.println("The time is over 0~23");
}
}
}

 你可以把台灣幾點時美國幾點寫一張表出來

 歸納一下結果再把他寫成程式碼

恩 寫出來了 謝謝
 
ZeroJudge Forum