728x90
백준 단계별 풀이
3,4번
사용언어 : 자바
스캐너 사용
// Step1-3 A+B
public void method01(){
int a=0;
int b=0;
Scanner sc = new Scanner(System.in);
a=sc.nextInt();
b=sc.nextInt();
System.out.println(a+b);
}
// Step1-4 1001번 A-B
public void method02(){
// import java.util.*;
int a = 0;
int b = 0;
Scanner sc = new Scanner(System.in);
a = sc.nextInt();
b = sc.nextInt();
System.out.println(a-b);
}
728x90
반응형
'small steps > 1일 1코딩 - 코딩을 내 몸처럼' 카테고리의 다른 글
[1일1코딩][Java] array - 가위 바위 보 (0) | 2022.09.06 |
---|---|
[1일1코딩][코딩테스트] 백준 단계별 문제 풀이 1단계 5,6번 (0) | 2022.09.05 |
[1일1코딩][IDE] 인텔리제이 사용 및 익숙해지기 6th : 빨간폴더 문제발생 (0) | 2022.09.04 |
[1일1코딩][Java] Collection : Set 3rd practice (0) | 2022.09.03 |
[1일1코딩][Java] Object Array practice 7th (0) | 2022.09.02 |