Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 리눅스
- 이것이 자바다
- VLAN
- sql
- 데이터베이스
- javaee
- 오라클
- 네트워크관리사
- 자바
- 정보처리기사
- autoset
- 라우터
- Oracle
- jsp
- ciscopacket
- w3school
- php
- Java
- 참조타입
- 버추얼머신
- html
- NCS
- jsp연결
- cisco packet
- ospf
- 정처기필기
- 네트워크
- 원형그래프
- rinux
- Cisco
Archives
- Today
- Total
기록해! 정리해!
자바 -Random, 날짜, 확인문제 11장 본문
º Random
-
-
- 규칙적인 랜덤값
- 로또
package java0727;
import java.util.Arrays;
import java.util.Random;
public class Test {
public static void main(String[] args) {
// 선택번호
int[] selectNumber = new int[6]; // 선택번호 6개가 저장될 배열
Random random = new Random();
System.out.print("선택 번호 : ");
for(int i=0; i<6; i++) {
selectNumber[i] = random.nextInt(45) + 1;
System.out.println(selectNumber[i] + " ");
}
System.out.println();
// 당첨번호
int[] winningNumber = new int[6];
random = new Random();
System.out.println("당첨 번호 : ");
for(int i=0; i<6; i++) {
winningNumber[i] = random.nextInt(45) + 1;
System.out.print(winningNumber[i] + " ");
}
System.out.println();
Arrays.sort(selectNumber);
Arrays.sort(winningNumber);
boolean result = Arrays.equals(selectNumber, winningNumber);
System.out.println("당첨 여부 : ");
if(result) {
System.out.println("1등");
} else {
System.out.println("x");
}
}
}
- 날짜 / 시분초
-
-
º 확인문제
- 4번
- 7번
- 8번
- 10번
- 13번
'JAVA' 카테고리의 다른 글
자바 - 컬렉션 프레임워크2 (Map과 Vo) (0) | 2022.07.28 |
---|---|
자바 - 컬렉션 프레임워크 (0) | 2022.07.27 |
자바 - 기본 API 클래스 2 (0) | 2022.07.26 |
자바 - 기본 API 클래스 (0) | 2022.07.25 |
자바 - 예외처리 / 확인문제 10장 (0) | 2022.07.22 |
Comments