- AWS
- 스프링부트
- 자바
- 데이터베이스
- string
- spring mvc
- PYTHON
- 스프링
- spring boot
- select
- 문자열
- java
- Docker
- 프로그래머스
- 1차원 배열
- spring security 6
- SSL
- jpa
- sql
- mysql
- spring
- springboot
- ORM
- hibernate
- static
- join
- DI
- Django
- @transactional
- nginx
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
목록1차원 배열 (6)
개발하는 자몽
문제 코드 import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.IOException; import java.util.StringTokenizer; public class Main{ public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringBuilder sb = new StringBuilder(); double sum = 0; double avg = 0; int outer = Integer.parseInt(br.readLine(..
문제 코드 import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.IOException; import java.util.StringTokenizer; import java.util.Arrays; public class Main{ public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); double arr[] = new double[Integer.parseInt(br.readLine())]; StringTokenizer st = new St..
문제 코드 import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.IOException; public class Main{ public static void main(String[] args) throws IOException { boolean[] arr = new boolean[42]; BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); for(int i=0; i
문제 코드 import java.util.Scanner; import java.util.stream.Stream; public class Main{ public static void main(String[] args){ int a, b, c; Scanner sc = new Scanner(System.in); a = sc.nextInt(); b = sc.nextInt(); c = sc.nextInt(); int res = a*b*c; int arr_res[] = Stream.of(String.valueOf(res).split("")).mapToInt(Integer::parseInt).toArray(); int cnt[] = new int[10]; for(int i=0; i
문제 코드 import java.util.Scanner; public class Main{ public static void main(String[] args){ int arr[] = new int[9]; Scanner sc = new Scanner(System.in); for(int i=0; i