#10850:


weber89521 (Lykoi)

學校 : 臺北市立大安高級工業職業學校
編號 : 57040
來源 : [210.70.131.254]
最後登入時間 :
2016-05-03 09:38:39
a002. 簡易加法 | From: [210.70.131.254] | 發表日期 : 2016-04-12 11:23

import java.io.*;
import java.util.Scanner;


public class test {

public static void main(String[] args) throws IOException {
Scanner scanner=new Scanner(System.in);
int a1,a2;
while (scanner.hasNext()) {
a1=scanner.nextInt();
System.out.println();
a2=scanner.nextInt();
System.out.println();
System.out.println(a1+a2);
}
}
}

 
ZeroJudge Forum