일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- JPA
- DBMS
- 애널리틱스4
- git pat
- docker
- 데이터내보내기
- PostgreSQL
- gtihub
- pat발급
- 명령어
- mssql
- SQL
- spring
- codeium
- oracle
- 자바
- 티스토리챌린지
- db종류
- java
- analytics4
- 11월순위
- Python
- 오블완
- macvlan
- 르세라핌
- ANTIFRAGILE
- mysql
- API
- IntelliJ
- Today
- Total
목록전체 글 (303)
hanker
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int tmp = 0; int befNum = 1, aftNum = 1; if(n == 1 || n == 2){ tmp = 1; } else { for(int i = 3 ; i
MainActivity외에 onClick 이벤트를 처리 할 Activity를 생성하여 실행 시켰더니 java.lang.IllegalStateException: Could not execute method for android:onClick 오류가 발생했다. 이유 : AndroidManifest.xml에 Activity 지정이 안되어서 나는 오류였다. 추가 후 오류 없음
$ timedatectl 명령어 입력 시 현재 설정된 Time zone을 확인할 수 있다. UTC로 설정 되어, 파일 생성일 등 확인이 불편함으로 한국 시간대로 변경하자 $ sudo timedatectl set-timezone Asia/Seoul 명령어를 입력하면 한국 시간대로 변경된다.
beforeDate - 이전 날짜 nowDate - 현재 날짜 public void monthValue(LocalDateTime beforeDate, LocalDateTime nowDate) { int monthA = beforeDate.getYear() * 12 + beforeDate.getMonthValue(); int monthB = nowDate.getYear() * 12 + nowDate.getMonthValue(); return monthB - monthA; }
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int val = 0; int tmp = n; if(n == 0){ System.out.println(1); } else { for(int i = 1 ; i
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); for(int i = 0 ; i < n ; i++){ int x1 = sc.nextInt(); int y1 = sc.nextInt(); int r1 = sc.nextInt(); int x2 = sc.nextInt(); int y2 = sc.nextInt(); int r2 = sc.nextInt(); int v = (int)(Math.pow(x2 - x1, 2) + Math.pow(y2 - y1, 2)); double plusR = Math.pow(..
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); double euclid = Math.PI * (Math.pow(n, 2)); double taxicap = 2 * (Math.pow(n, 2)); System.out.println(String.format("%.6f", euclid)); System.out.println(String.format("%.6f", taxicap)); } }
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); while(true){ int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); if(a == 0 && b == 0 && c == 0){ break; } if((a * a) + (b * b) == c * c){ System.out.println("right"); } else if((c * c) + (b * b) == a * a){ System.out.println("right"); } else if((a * a) + (c * ..
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); int d = sc.nextInt(); int e = sc.nextInt(); int f = sc.nextInt(); int x = a; int y = b; if(x == c){ x = e; } else if (x == e){ x = c; } if(y == d){ y = f; } else if(y == f){ y = d; } System.out.println(x + " ..
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int y = sc.nextInt(); int w = sc.nextInt(); int h = sc.nextInt(); int xLen = Math.min(x, w-x); int yLen = Math.min(y, h-y); System.out.println(Math.min(xLen, yLen)); } }