Notice
Recent Posts
Recent Comments
Link
목록시간 (1)
drexqq
[Java, 자바] 백준알고리즘 단계별로 풀기 - 2단계
1330번 두 정수 A와 B가 주어졌을 때, A와 B를 비교하는 프로그램을 작성하시오. import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String num = sc.nextLine(); // .next() -> 공백 제거 // /nextLine() -> 공백 유지 String splitArr[] = num.split(" "); int n1, n2; n1 = Integer.parseInt(splitArr[0]); n2 = Integer.parseInt(splitArr[1]); if (n1 == n2) { System.out.println("=="..
공부노트/백준알고리즘
2020. 5. 26. 19:52