일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 자바 인터뷰
- react state
- react jsx
- 리액트
- 맥북 유용한 앱
- 맥북 초보
- 자바 개발자
- 아톰에디터
- 자바 영어면접
- node.js
- React
- 자바 면접
- 자바 기술면접
- Node.js Express
- 알고리즘
- Java tech interview
- 백준 알고리즘
- 맥북 필수 앱
- 맥북 팁
- 백준
- React props
- AtomEditor
- 백준 단계별로 풀어보기
- Express middleware
- tech interview
- 기술면접
- mysql
- 생활코딩
- jsx 문법
- 맥북 사용법
- Today
- Total
목록백준 (5)
song.log
2920. 음계 다장조는 c d e f g a b C, 총 8개 음으로 이루어져있다. 이 문제에서 8개 음은 다음과 같이 숫자로 바꾸어 표현한다. c는 1로, d는 2로, ..., C를 8로 바꾼다. 1부터 8까지 차례대로 연주한다면 ascending, 8부터 1까지 차례대로 연주한다면 descending, 둘 다 아니라면 mixed 이다. 연주한 순서가 주어졌을 때, 이것이 ascending인지, descending인지, 아니면 mixed인지 판별하는 프로그램을 작성하시오. import java.util.Scanner; public class Main{ public static void main(String[] args) { Scanner scan = new Scanner(System.in); int ..
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을 붙여 두 자리 수로 만들고, 각 자..
2741. N 찍기 자연수 N이 주어졌을 때, 1부터 N까지 한 줄에 하나씩 출력하는 프로그램을 작성하시오. import java.util.Scanner; public class Main{ public static void main(String[] args) { Scanner scan = new Scanner(System.in); int n = scan.nextInt(); for(int i = 1; i
1330. 두 정수 A와 B가 주어졌을 때, A와 B를 비교하는 프로그램을 작성하시오. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 import java.util.Scanner; public class Main{ public static void main(String[] args) { Scanner scan = new Scanner(System.in); int a = scan.nextInt(); int b = scan.nextInt(); if(a>b) { System.out.println(">"); }else if(a45) { m = m-45; System.out.println(h+" "+m); } else { m = (60+m-45)%60; h = h-1; if(h
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