#3754: Line17


d000032002 ((選擇題)為SCWCD和專案努力)

學校 : 國防大學
編號 : 7465
來源 : [114.47.153.127]
最後登入時間 :
2018-01-01 16:11:21
d673. 11608 - No Problem -- UVa11608 | From: [115.81.7.190] | 發表日期 : 2010-05-22 19:36

請問一下這樣寫有錯誤嗎?

public class D673 {

    public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        int c=0;
        while (input.hasNext()) {
            c++;
            int p=input.nextInt();
          
            if(p<0) break;
            System.out.println("Case "+c+":");
            int d[]=new int[12];
            for(int i=0;i<12;i++){
                d[i]=input.nextInt();
            }

            //
            for(int i=0;i<12;i++){
                int tmp=input.nextInt();
                System.out.println(p<tmp? "No problem. :(":"No problem! :D");
                p+=d[i];
            }
        }
    }
}

 
ZeroJudge Forum