이야기앱 세상

자바 - 로또3(Vector를 이용한 로또 예제) 본문

IT/Java

자바 - 로또3(Vector를 이용한 로또 예제)

storya 2016. 3. 24. 09:49

Vector를 이용한 로또 예제

--------------------------------

import java.util.Collections;
import java.util.Random;
import java.util.Vector;

public class VectorLotto {
 public static void main(String[] args){
  Vector<Integer> vc = new Vector<Integer>();
  Random ran = new Random();
  Integer ir = null;
     while(vc.size()<6) {  
         ir = new Integer(ran.nextInt(45)+1); 
         // 중복값 체크
         if(!vc.contains(ir)) {
            vc.add(ir);
         }
         //정렬
         Collections.sort(vc);
     }
     for(int i=0;i<vc.size();i++){
      System.out.print(vc.get(i)); 
      System.out.print((i == vc.size()-1) ? "" : ",");
     }
 }
}

반응형
Comments