일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- SECS
- c
- regression
- programmers
- 백준
- 프로그래머스
- spring boot
- Baekjoon
- 파이썬
- java
- Spotify Api
- 회원가입
- 스포티파이
- SW Expert Academy
- CS
- Gem
- SECS-II
- 회귀
- SECS/GEM
- 자바
- Spring
- modern c++
- Computer Science
- SWEA
- linux
- MYSQL
- spotify
- Spring JPA
- python
- C++
Archives
- Today
- Total
비버놀로지
[BAEKJOON 백준] 1001 A-B 본문
728x90
Scanner 을 이용하여 a와 b에 입력값을 받아주고, a-b를 출력해 준다.
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();
System.out.println(a-b);
}
}
728x90
'ALGORITM > JAVA' 카테고리의 다른 글
[BAEKJOON 백준] 1032 명령 프롬프트 (0) | 2021.01.10 |
---|---|
[BAEKJOON 백준] 1008 A/B (0) | 2021.01.10 |
[BAEKJOON 백준] 1000 A+B (0) | 2021.01.10 |
[Programmers 프로그래머스] 17682 [1차] 다트 게임 (0) | 2021.01.10 |
[Programmers 프로그래머스] 42889 실패율 (0) | 2021.01.10 |
Comments