PS/백준
-
10950 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.PS/백준 2022. 2. 15. 19:54
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader buf = new BufferedReader(new InputStreamReader(System.in)); StringBuilder sb = new StringBuilder(); int n = Integer.parseInt(buf.readLine()); for(int i = 0; i < n; i++) { String line = buf.readLine(); String[] ..
-
2558 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.(줄 바꿔서 입력)PS/백준 2022. 2. 14. 21:39
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { //두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.(줄 바꿔서 입력) BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int firstVal = Integer.parseInt(br.readLine()); int secondVal = Integer.parseInt(br.readLine());..
-
1000 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.(한줄로 입력)PS/백준 2022. 2. 14. 21:38
import java.util.Scanner; public class Main { public static void main(String[] args) { //두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.(한줄로 입력) Scanner scan = new Scanner(System.in); int firstVal = scan.nextInt(); int secondVal = scan.nextInt(); System.out.print(firstVal + secondVal); } }