일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 백준
- Java heap
- heap정렬
- 코딩테스트기출
- 알고리즘
- 백준 1924번 java
- 카카오코테
- 문자열포맷
- 자바문자열
- 백준 1000번
- java
- 프렌즈4블록
- 카카오코딩테스트
- 객체프로그래밍이란
- 힙정렬자바
- 코테준비
- 객체프로그래밍
- 카카오1차
- 프렌즈4블록java
- heap
- 백준 1000번 java
- 프로그래머스
- 카카오기출
- 자료구조 트리
- 백준 1924번
- 개발상식
- 공부정리
- 자바
- 자료구조힙
- java method
- Today
- Total
목록전체 글 (96)
일단 시작해보는 블로그
package input_output; import java.util.Arrays; import java.util.Scanner; public class backjoon_10818 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int T = sc.nextInt(); int[] num = new int[T]; for(int i=0; i
//문제 //Hello World!를 출력하시오. package input_output; public class backjoon_2557 { public static void main(String[] args) { System.out.println("Hello World!"); } } https://www.acmicpc.net/problem/2557 2557번: Hello World Hello World!를 출력하시오. www.acmicpc.net
// N=5 // ********* // ******* // ***** // *** // * // *** // ***** // ******* // ********* package input_output; import java.util.Scanner; public class backjoon_2446 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); for(int i=1-N; i
// N = 5 // * * // ** ** // *** *** // **** **** // ********** // **** **** // *** *** // ** ** // * * package input_output; import java.util.Scanner; public class backjoon_2445 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); for(int i=1; i
package input_output; import java.util.Scanner; public class backjoon_1924 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String[] week = {"SUN", "MON", "TUE", "WED", "THU", "FRI", "SAT"}; int[] date = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; int x = sc.nextInt(); int y = sc.nextInt(); int tmp = 0; for(int i=0; i
https://www.acmicpc.net/problem/1000 package input_output; import java.util.Scanner; public class backjoon_1000 { 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); } }
Scanner vs BufferedReader - Scanner는 표준 입력 클래스이다. - 사용할 때, Scanner(간단한편) BufferedReader (약간 복잡, 귀찮음) - 속도, 성능 Scanner