a002.
簡易加法
| From: [182.234.3.69] |
發表日期
:
2014-06-24 16:49
import java.util.Scanner;
public class test {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner br = new Scanner(System.in);
while (br.hasNextInt()) {
int math = br.nextInt();
int math2 = br.nextInt();
System.out.println(math*math2);
}
}
}
我輸入這些
他給我NA
第 1 測資點(0%): WA
(line:1)答案不正確
您的答案為: 248130740 正確答案為: 33444
第 2 測資點(0%): WA
(line:1)答案不正確
您的答案為: 5
正確答案為: 6
我不懂為什麼 我在測驗的時候是可以的