LAB - 랜덤 함수 추출 및 저장 SourceCode
CODEDRAGON ㆍDevelopment/Java
반응형
LAB - 랜덤 함수 추출 및 저장
http://codedragon.tistory.com/7977
SourceCode
package com.mathex;
import java.util.Arrays;
public class RandomEx07 {
public static void main(String[] args) { // 크기가 20인 배열 생성 int[] random = new int[20];
// 20번 반복 수행하면 랜덤한 수를 배열에 저장 for(int i=0; i<random.length; i++){ // 1~99 가 나올 수있도록 99곱한 후 1을 더한 합으로 난수 생성 int n = (int) (Math.random()*99)+1; // 배열에 저장 random[i] = n; }
//배열 정렬 Arrays.sort(random);
System.out.println(Arrays.toString(random)); // [8, 13, 18, 19, 28, 30, 34, 34, 39, 57, 60, 62, 65, 66, 73, 90, 91, 92, 97, 98]
} }
|
'Development > Java' 카테고리의 다른 글
Annotation(어노테이션), 어노테이션의 용도 (0) | 2018.11.16 |
---|---|
SUMMARY - 자바프로그래밍 요약 2 (0) | 2018.11.16 |
LAB - 로또 생성기 SourceCode (0) | 2018.11.15 |
Java - Varargs 형식 (0) | 2018.11.14 |
인자전달방식-값 호출 (Call by Value), 참조 호출 (Call by Reference), Varargs(Variable Arguments) (0) | 2018.11.14 |