#5942: java 求助


johnchen81 (GoJa)

學校 : 新北市立金山高級中學
編號 : 21213
來源 : [1.160.223.89]
最後登入時間 :
2013-04-24 00:29:35
d984. 棄保效應 -- 板橋高中教學題 | From: [123.193.182.139] | 發表日期 : 2011-10-19 22:27


import java.util.Scanner;
public class D984{
public static void main(String args[]){
Scanner cin = new Scanner(System.in);
while(cin.hasNext()){
long a = cin.nextInt();
long b = cin.nextInt();
long c = cin.nextInt();
if (a>b && b>c){
if (a-(b+c)> 0){
System.out.println("A");
}else{
System.out.println("B");
}
}else if (a>c && c>b){
if (a - (c+b)> 0){
System.out.println("A");
}else{
System.out.println("C");
}
}else if (b>a && a>c){
if (b - (a+c)> 0 ){
System.out.println("B");
}else{
System.out.println("A");
}

}else if (b>c && c>a){
if (b -(c+a)> 0 ){
System.out.println("B");
}else{
System.out.println("C");
}
}else if (c>a && a>b){
if (c - (a+b)> 0){
System.out.println("C");
}else{
System.out.println("A");
}
}else if (c>b && b>a){
if (c - (b+a)> 0){
System.out.println("C");
}else{
System.out.println("B");
}
}
}
}
}
 WA (line:4)
答案不正確
您的答案為: B 正確答案為: C
 
ZeroJudge Forum