반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 생활코딩
- 자바 인터뷰
- Node.js Express
- node.js
- 맥북 팁
- react state
- 백준 단계별로 풀어보기
- AtomEditor
- 백준 알고리즘
- Express middleware
- 맥북 사용법
- 자바 개발자
- 알고리즘
- 맥북 초보
- jsx 문법
- mysql
- 자바 기술면접
- 아톰에디터
- 자바 영어면접
- 기술면접
- React props
- 자바 면접
- 백준
- react jsx
- Java tech interview
- 리액트
- React
- 맥북 유용한 앱
- 맥북 필수 앱
- tech interview
Archives
- Today
- Total
song.log
[Algorithm] 백준 단계별로 풀어보기 - 1.입/출력 받아보기 본문
반응형
2557. Hello World!를 출력하시오.
1
2
3
4
5
6
7
|
public class Main{
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
|
10718. 두 줄에 걸쳐 "강한친구 대한육군"을 한 줄에 한 번씩 출력한다.
1
2
3
4
5
6
7
8
9
|
public class Main{
public static void main(String[] args) {
for (int i = 0; i <2; i++) {
System.out.println("강한친구 대한육군");
}
}
}
|
10171. 고양이 출력
1
2
3
4
5
6
7
8
9
|
public class Main{
public static void main(String[] args) {
System.out.println("\\"+"\t"+"/"+"\\");
System.out.println(" )"+" "+"( ')");
System.out.println("("+" /"+" )");
System.out.println(" \\(__) |");
}
}
|
이건 실패했습니다..
1000. 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
1
2
3
4
5
6
7
8
9
10
11
|
public class Main{
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int a = scan.nextInt();
int b = scan.nextInt();
System.out.println(a+b);
}
}
|
1001.두 정수 A와 B를 입력받은 다음, A-B를 출력하는 프로그램을 작성하시오.
1
2
3
4
5
6
7
8
9
10
11
|
public class Main{
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int a = scan.nextInt();
int b = scan.nextInt();
System.out.println(a-b);
}
}
|
반응형
'StudyLog > Algorithm' 카테고리의 다른 글
[Algorithm] 백준 단계별로 풀어보기 - 5. 1차원 배열 (0) | 2019.12.21 |
---|---|
[Algorithm] 백준 단계별로 풀어보기 - 4.while문 (0) | 2019.12.20 |
[Algorithm] 백준 단계별로 풀어보기 - 3.for문 (0) | 2019.12.20 |
[Algorithm] 백준 단계별로 풀어보기 - 2.if문 (0) | 2019.12.19 |
Comments