일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Entity
- StringBuilder
- K-MOOC 단국대학교 홍보단
- 자바문자열구분
- 혁신의기술2:신뢰의미래 블록체인을 만나다
- biginteger사용법
- 우선순위큐
- 오블완
- StringTokenizer
- K-MOOC
- html기초
- 시스템프로그래밍
- 머신러닝
- 컴파일시스템
- 단국대학교 k-mooc
- 블록체인 강의
- 자바입력받기
- CSS 기초
- Node
- 딥러닝
- 블록체인
- 2차원배열정렬
- 블록체인강의
- 티스토리챌린지
- stringreader
- 디스크블록할당
- attribute
- 해시
- 자바스크립트
- national instruments
- Today
- Total
목록개발 공부 (77)
열정 실천
import java.io.IOException; import java.util.Scanner; public class baekjoon_1085 { public static void main (String[] args) throws IOException { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int y = sc.nextInt(); int w = sc.nextInt(); int h = sc.nextInt(); //x,y,w-x,h-y중에 최솟값 구하기 int min = x; if(y
import java.io.IOException; import java.util.Scanner; public class Main { public static void main (String[] args) throws IOException { Scanner sc = new Scanner(System.in); int l = Integer.parseInt(sc.nextLine()); int a = Integer.parseInt(sc.nextLine()); int b = Integer.parseInt(sc.nextLine()); int c = Integer.parseInt(sc.nextLine()); int d = Integer.parseInt(sc.nextLine()); int max = 0; if(a%c==..
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.nio.Buffer; import java.util.ArrayList; import java.util.Scanner; import java.util.StringTokenizer; public class Main { public static void main (String[] args) throws IOException { boolean con = true; int size = 0; int count = 0; ArrayList arrli = new ArrayList(); String s = ""; Scanner put =..
[ArrayList] ArrayList와 배열의 가장 큰 차이점은?? → 배열은 크기가 고정되어 있지만 ArrayList는 크기가 가변적이라는 것!! [사용방법] 우선 임포트 해주기! import java.util.ArrayList; ArrayList 선언하는 방법 ArrayList mylist = new ArrayList(); //일반 리스트 선언 ArrayList mylist = new ArrayList(); //int로 타입 설정 ArrayList mylist = new ArrayList(10); //초기 용량 설정 ArrayList mylist = new ArrayList(Arrays.asList(1, 2, 3, 4)); //초기 값 설정 ArrayList에 값을 추가하기 Arraylist의 마지..
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Main { public static void main (String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String line = br.readLine(); StringTokenizer st = new StringTokenizer(line, " "); int a = Integer.parseInt(st.nextTo..