반응형
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
- Express middleware
- 생활코딩
- 알고리즘
- 자바 면접
- Node.js Express
- React props
- 맥북 유용한 앱
- react jsx
- Java tech interview
- 맥북 초보
- 자바 영어면접
- React
- jsx 문법
- 맥북 필수 앱
- node.js
- 백준 단계별로 풀어보기
- 기술면접
- 백준
- 맥북 팁
- 자바 기술면접
- 맥북 사용법
- 리액트
- 자바 인터뷰
- 자바 개발자
- mysql
- react state
- AtomEditor
- 아톰에디터
- 백준 알고리즘
- tech interview
Archives
- Today
- Total
목록A+B-4 (1)
song.log
[Algorithm] 백준 단계별로 풀어보기 - 4.while문
10951. A+B-4 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. import java.util.Scanner; public class Main{ public static void main(String[] args) { Scanner scan = new Scanner(System.in); while(scan.hasNextInt()) { int a = scan.nextInt(); int b = scan.nextInt(); System.out.println(a+b); } } } 1110. 더하기 사이클 0보다 크거나 같고, 99보다 작거나 같은 정수가 주어질 때 다음과 같은 연산을 할 수 있다. 먼저 주어진 수가 10보다 작다면 앞에 0을 붙여 두 자리 수로 만들고, 각 자..
StudyLog/Algorithm
2019. 12. 20. 02:06