기본 콘텐츠로 건너뛰기

로또 728회 당첨

728제(2016년 11월 12일 추첨)

지난회차 당첨번호 바로가기
search
3610303437
+
36


    순위등위별 총 당첨금액당첨게임 수1게임당 당첨금액당첨기준비고
    1등16,217,322,000원53,243,464,400원당첨번호 6개 숫자일치 
    1등
    자동5
    2등2,702,887,040원5648,265,840원당첨번호 5개 숫자일치
    +보너스 숫자일치
    3등2,702,887,992원1,8691,446,168원당첨번호5개 숫자일치
    4등4,734,650,000원94,69350,000원당첨번호 4개 숫자일치
    5등7,795,310,000원1,559,0625,000원당첨번호 3개 숫자일치

    댓글

    이 블로그의 인기 게시물

    dmesg 메시지 실시간으로 보기

    참조사이트 http://imitator.kr/Linux/556 # tail -f /var/log/messages # tail -f |dmesg //기본 2초 단위로 갱신 된다. # watch "dmesg | tail -f" //1초 단위로 갱신하면서 보여준다. # watch -n 1 "dmesg | tail -f" // 보여주는 줄을 20으로 늘린다. (기본 10줄) # watch -n 1 "dmesg | tail -f -n 20"

    java 특정 디렉토리에 있는 파일 목록을 읽어내기, 정렬해서 가져오기

    폴더 리스트 가져오기 String path="C:\"; File dirFile=new File(path); File []fileList=dirFile.listFiles(); for(File tempFile : fileList) {   if(tempFile.isFile()) {     String tempPath=tempFile.getParent();     String tempFileName=tempFile.getName();     System.out.println("Path="+tempPath);     System.out.println("FileName="+tempFileName);     /*** Do something withd tempPath and temp FileName ^^; ***/   } } 정렬해서 가져오기 import java.io.FileFilter; import java.io.IOException; import java.util.Arrays; import java.util.Date; import org.apache.commons.io.comparator.LastModifiedFileComparator; import org.apache.commons.io.filefilter.FileFileFilter; public class LastModifiedFileComparatorTest { public static void main(String[] args) throws IOException { File directory = new File("."); // get just files, not directories File[] files = directory.listFiles((FileFilter) FileFileFilter.FILE); System.out.println("Defaul...