일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- IntelliJ
- 인텔리제이
- 이클립스
- Eclipse
- 이탈리아
- html
- javascript
- 문자열
- input
- Java
- ArrayList
- 배열
- vscode
- date
- 자바스크립트
- CSS
- table
- CMD
- Maven
- 테이블
- windows
- list
- json
- string
- js
- Files
- Visual Studio Code
- 자바
- Button
- Array
- Today
- Total
목록최대값 (5)
어제 오늘 내일
int의 Wrapper Class인 Integer 클래스를 이용하면 정수의 최대값과 최소값을 출력할 수 있습니다. static int Integer.MAX_VALUE static int Integer.MIN_VALUE Integer.MAX_VALUE, Integer.MIN_VALUE 필드는 정수의 최대값과 최소값을 표현하기 때문에, 이것으로 정수의 최대값과 최소값을 출력할 수 있습니다. 예제 public class MinMaxInteger { public static void main(String[] args) { System.out.println(Integer.MIN_VALUE); // -2147483648 System.out.println(Integer.MAX_VALUE); // 2147483647 ..
List의 값 중 최대값, 최소값을 구하기 위해서, 다음 메소드를 사용할 수 있습니다. Collections.max() Collections.min() ArrayList에서 최대값, 최소값 구하기 public static T max(Collection
지난번에는 배열의 여러 원소들 중 최대값과 최소값을 구하는 방법을 알아보았습니다. [Java] 배열 원소 중 최대값, 최소값 구하기 이번에는 최대값과 최소값을 가지는 배열의 인덱스(index) 값을 구하는 방법을 알아보도록 하겠습니다. 최대값 / 최대값 인덱스 구하기 코드 public class Max { public static void main(String[] args) { int[] arr = { 3, 2, 1, 5, 4 }; // 최대값, 최대값의 인덱스 초기값 세팅 int max = arr[0]; int maxIndex = 0; // 최대값, 최대값의 인덱스 구하기 for (int i = 0; i max) { max = arr[i]; ..
배열이 가지고 있는 원소 중, 가장 큰 값(최대값), 가장 작은 값(최소값)을 구하는 방법을 소개합니다. 최대값 구하기 코드 public class Max { public static void main(String[] args) { int[] arr = { 3, 2, 1, 5, 1 }; // 최대값 초기값 세팅 int max = arr[0]; // 최대값 구하기 for (int num : arr) { if (num > max) { max = num; } } // 최대값 출력 System.out.println(max); } } 결과 5 int max = arr[0]; 배열의 첫번째 값을 최대값(max)의 초기값으로 설정하였습니다. for(int num : arr) { ... } 배열을 순회하면서 max에 ..
Javascript 배열의 여러 원소들 중 최대값, 최소값을 구하는 방법을 정리합니다. 1. Math.max(), Math.min() 소개 2. Function.prototype.apply() 사용하기 3. Spread Operator(전개 연산자) 사용하기 1. Math.max(), Math.min() 소개 const maxValue = Math.max(1, 2, 3, 4, 5); const minValue = Math.min(1, 2, 3, 4, 5); document.write('Max : ' + maxValue); document.write(' '); document.write('Min : ' + minValue); Math.max()와 Math.min() 함수는 파라미터로 입력받은 숫자들 중 최..