일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 회원가입
- 회귀
- regression
- SECS
- CS
- c
- C++
- Computer Science
- Spring
- Gem
- Spotify Api
- 파이썬
- 스포티파이
- spotify
- Spring JPA
- python
- 프로그래머스
- linux
- SECS/GEM
- MYSQL
- modern c++
- SWEA
- Baekjoon
- java
- programmers
- spring boot
- 자바
- SW Expert Academy
- SECS-II
- 백준
Archives
- Today
- Total
비버놀로지
[BAEKJOON 백준] 1330 두 수 비교하기 본문
728x90
두 수의 크기를 비교해 주는 문제이다.
Scanner을 이용을 해서 두 수를 받아주고, 그 두 수를 비교를 해서 해당하는 출력을 해줄수 있도록 작성했다.
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int a=sc.nextInt();
int b=sc.nextInt();
if (a<b) {
System.out.println("<");
}else if(a>b) {
System.out.println(">");
}else {
System.out.println("==");
}
}
}
728x90
'ALGORITM > JAVA' 카테고리의 다른 글
[BAEKJOON 백준] 1550 16진수 (0) | 2021.01.11 |
---|---|
[BAEKJOON 백준] 1463 1로 만들기 (0) | 2021.01.11 |
[BAEKJOON 백준] 1271 엄청난 부자2 (0) | 2021.01.10 |
[BAEKJOON 백준] 1260 DFS와 BFS (0) | 2021.01.10 |
[BAEKJOON 백준] 1244 스위치 켜고 끄기 (0) | 2021.01.10 |
Comments