일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 다이나믹 프로그래밍
- 코딩테스트
- html
- Kotlin
- 구현
- 해슁
- 클린코드
- front-end
- 검색트리
- javascript
- java
- 프로그래머스
- SWEA
- 정렬
- codecademy
- BFS
- DP
- Web
- algorithm
- DFS
- CleanCode
- 자바
- inflearn
- Color
- Spring
- 알고리즘
- android
- SQL
- 순환
- CSS
- Today
- Total
목록Android (16)
깡뇽
- 배열 ① 방법1 : 배열의 크기를 정하고 값을 따로 넣는 방법 Ex) int [ ] arr1 = new int [ 5 ] ; arr1 [ 0 ] = 10; arr1 [ 1 ] = 20; arr1 [ 2 ] = 30; arr1 [ 3 ] = 40; arr1 [ 4 ] = 50; arr1 [ 5 ] = 60; System.out.println ( arr1 [ 2 ] ) ; -> 출력하면 30 => 위의 예시에서 int는 배열 안에 들어갈 자료형을 표시함. arr1은 배열의 이름. [ 5 ]는 배열 내 자료의 개수를 의미함. ② 방법2 : 배열에 값을 바로 넣는 방법 Ex) int [ ] arr2 = { 100, 200, 300, 400, 500 }; System.out.println ( arr2 [ 0 ..
- 반복문 ① for 문 for ( 변수 초기화 ; 조건 ; 증가or감소 ) { 반복할 코드 } ② while 문 while ( 조건 ) { 반복할 코드 } ③ do while 문 do { 반복할 코드 } while ( 조건 ); => 조건이 틀려도 반복할 코드가 1회 실행됨. Ex) 구구단 만들기 for ( int i = 2 ; i < 10 ; i ++ ) { for ( int j = 1 ; j < 10 ; j ++ ) { System.out.println ( i + " * " + j + " = " + j * i ) } }
- 조건문 if ( 조건 ) { 조건이 맞을 때 실행할 코드 }; else if ( 조건 ) { 위 조건이 틀릴 때 실행할 코드 }; else { 위에 모든 조건이 틀릴 때 실행할 코드 }; => if와 else만으로 조건문 작성 가능. 조건을 추가로 넣고 싶을 경우에 else if를 여러 개 추가할 수 있음. - switch / case 문 Ex) int score = 100; switch ( score ) { csase 100 : System.out.println("1"); break; case 90 : System.out.println("2"); break; case 80 : System.out.println("3"); break; case 70 : System.out.println("4"); br..
Eclipse 설치 -> Eclipse IDE 실행 File -> New -> Java project 생성 -> Project name 입력 -> Finish -> Module name 입력 -> create java 파일 생성 : Project에서 src 우클릭 -> New -> Class 생성 -> Name 입력 -> Finish 필수 입력 : public static void main(String[] args){ 이 안에 코드를 작성 } - 자료형 int : 정수 double : 실수 char : 문자 boolean : true 와 false Ex) double c = 10.258; -> 출력하면 10.258 char d = 'k'; -> 출력하면 k boolean s = false; -> 출력하면..