일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- docker
- JPQL
- analytics4
- DBMS
- java
- ANTIFRAGILE
- 11월순위
- 티스토리챌린지
- pat발급
- db종류
- IntelliJ
- 명령어
- 컬렉션프레임워크
- Python
- docker build
- JPA
- 애널리틱스4
- spring
- gtihub
- 르세라핌
- macvlan
- 자바
- 오블완
- git branch 삭제
- 데이터내보내기
- git pat
- 도커이미지
- codeium
- docker push
- Today
- Total
목록전체 글 (294)
hanker
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int C = sc.nextInt(); for(int i = 0 ; i ..
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); String[] ar = new String[N]; for(int i = 0 ; i < N ; i++) { int sum = 0; int tmp = 0; ar[i] = sc.next(); for(int j = 0 ; j < ar[i].toCharArray().length ; j++) { char[] ox = new char[ar[i].toCharArray().length]; ox[j] = ar[i].toCharArray()[j]; if(ox[j] ..
//현재 연도 4자리 $thisYear = date("Y"); //ex) 2020 //현재 연도 2자리 $thisYear = date("y"); //ex) 20 //현재 월 (0포함 2자리) $thisMonth = date("m"); //ex) 01 ~ 12 //현재 월 (0제외) $thisMonth = date("n"); //ex) 1 ~ 12 //현재 일 (0포함 2자리) $thisDay = date("d"); //ex) 01 ~ 31 //현재 일 (0제외) $thisDay = date("j"); //ex) 1 ~ 31
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int[] ar = new int[N]; int maxScore = 0; float sum = 0; float avr = 0; for(int i = 0 ; i < N ; i++) { ar[i] = sc.nextInt(); if(maxScore < ar[i]) { maxScore = ar[i]; } } for(int i = 0 ; i < N ; i++) { float tmp = (float) (ar[i] * 100) / maxScore ; sum +..
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int[] ar = new int[10]; int tmp = 0; int cnt = 0; boolean flag2 = false; for(int i = 0 ; i < 10 ; i++) { boolean flag = true; int A = sc.nextInt(); tmp = A % 42; if(tmp == 0) { flag2 = true; } for(int j = 0 ; j < 10 ; j++) { if(ar[j] == tmp) { flag = false; } } if(flag) { a..
import java.util.Scanner; public class Main { public static void main(String args[]) throws Exception{ Scanner sc = new Scanner(System.in); int A = sc.nextInt(); int B = sc.nextInt(); int C = sc.nextInt(); int x = A * B * C; int[] ar = new int[10]; while(x > 0) { ar[x % 10] += 1; x /= 10; } for(int i = 0 ; i < 10 ; i++) { System.out.println(ar[i]); } } }
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = 9; int[] ar = new int[9]; int tmp = 0; int maxInt = 0; for(int i = 0 ; i < 9 ; i++) { ar[i] = sc.nextInt(); if(tmp < ar[i]) { tmp = ar[i]; maxInt = i+1; } } System.out.println(tmp); System.out.println(maxInt); } }
변수가 들어가는 부분을 제외한 부분을 ''으로 묶어준다. 1 . index로 선택하기 var id = '16077'; $('[index='+ id + ']'); 2 . id로 선택하기 var id = '16077'; $('#'+ id ); 3 . class로 선택하기 var id = '16077'; $('.'+ id ); 출처 : github.com/sooojungee/TIL/blob/master/jQuery/180627.%5BjQuery%5D%20%EC%84%A0%ED%83%9D%EC%9E%90%EC%97%90%20%EB%B3%80%EC%88%98%20%EB%84%A3%EA%B8%B0.md
주석 처리 방법에는 여러가지 방법이 있다. ( '//' , '/* */'); 이 방법은 Ctrl + Shift + / 단축키로 불러올 수 있다. Comment 나 개발로직을 주석처리 할 때 이런 식의 주석은 깔끔하지 않다. /** * 2020.12.04 * ver 0.1 * by Hanker */ 이런식의 깔끔한 주석처리를 하려면 파일 위 /** 입력후 Enter를 입력하면 자동으로 불러온다.