#8436: WHY?簡單加法!哪個NG?


tai6725 (tai)

學校 : 不指定學校
編號 : 37761
來源 : [123.240.183.232]
最後登入時間 :
2014-11-15 23:54:13
a002. 簡易加法 | From: [123.240.183.232] | 發表日期 : 2013-12-08 22:45

import java.util.Scanner;
public class Ex02
{
    public static void main(String[] args)
    {
        Scanner scn=new Scanner(System.in);
        int a,b;

        for (int i=0;i<2 ;i++ )
        {
            a=scn.nextInt();
            b=scn.nextInt();

            System.out.println(a+b);
        }
    }
}
 
#8757: Re:WHY?簡單加法!哪個NG?


isu10103068A (暖暖兒)

學校 : 義守大學
編號 : 40442
來源 : [140.127.182.51]
最後登入時間 :
2014-04-21 00:56:50
a002. 簡易加法 | From: [115.165.208.118] | 發表日期 : 2014-04-10 17:31

import java.util.Scanner;
public class Ex02
{
    public static void main(String[] args)
    {
        Scanner scn=new Scanner(System.in);
        int a,b;

        for (int i=0;i<2 ;i++ )
        {
            a=scn.nextInt();
            b=scn.nextInt();

            System.out.println(a+b);
        }
    }
}

這樣只能通過2個資測,因為不知道有多少組資料,用while會不會好一點?  
ZeroJudge Forum