1330번 두 수 비교하기
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int A = scan.nextInt();
int B = scan.nextInt();
if(A > B) {
System.out.println(">");
} else if(A < B) {
System.out.println("<");
} else if(A == B) {
System.out.println("==");
}
}
}
https://st-lab.tistory.com/21
블로그에서 확인하고 다르게 푸는 방법 실습해보았다.
StringTokenizer 클래스를 이용한 방법
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String str = br.readLine();
StringTokenizer st = new StringTokenizer(str, " ");
int A = Integer.parseInt(st.nextToken());
int B = Integer.parseInt(st.nextToken());
System.out.println((A>B) ? ">" : ((A<B) ? "<" : "=="));
}
}
split()을 이용하는 방법
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String[] str = br.readLine().split(" ");
int A = Integer.parseInt(str[0]);
int B = Integer.parseInt(str[1]);
System.out.println((A>B) ? ">" : ((A<B) ? "<" : "=="));
}
}
Author And Source
이 문제에 관하여(1330번 두 수 비교하기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@menu34/1330번-두-수-비교하기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)