Contents

Develop
2013.04.23 15:07

[c] 로또(Lotto) 번호 생성기

조회 수 7174 댓글 0
Atachment
첨부 '1'
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
단, 6번의 루프로 해결 버전 입니다 >0<

#include <stdio.h> 
#include <stdlib.h> 
#include <unistd.h> 
#include <time.h> 

int ball[46] ={ 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, 32, 33, 34, 35, 36, 37, 38, 39, 40,
        41, 42, 43, 44, 45, 46 };

int get_number(void){ 
        return (int)(rand()) % 45 + 1;
}

int main(void){
        int i, idx, tmp;
        
        srand((unsigned)time(NULL) * (unsigned)getpid());
        
        for(i=0; i<6; i++){
                idx = get_number();
                // ball의 인덱스와 ball의 i의 값을 바꾸어 줍니다.
                tmp = ball[idx];
                ball[idx] = ball[i];
                ball[i] = tmp;
        }
        
        printf("oops : %d %d %d %d %d %d\n", ball[0], ball[1], ball[2], ball[3], ball[4], ball[5]);
        
        return 0; 
}

출처 : http://myohan.egloos.com


?

  1. [js] 스타크래프트(starcraft)..

    Date2013.04.23 CategoryDevelop Byhooni Views6641
    Read More
  2. [php] 탐색기와 같은 다이나믹 트리(xml/xsl 이용)

    Date2013.04.23 CategoryDevelop Byhooni Views7154
    Read More
  3. [c] 네트워크 보안 프로그래밍 과제 (Server,Agent,Client)

    Date2013.04.23 CategoryDevelop Byhooni Views6473
    Read More
  4. [windows] 원격 데스크탑(터미널 서비스) 포트 변경

    Date2013.04.23 CategorySystem/OS Byhooni Views16305
    Read More
  5. [switch] 시스코 스위치 관리자 암호 초기화 방법

    Date2013.04.23 CategorySystem/OS Byhooni Views17188
    Read More
  6. [switch] 시스코 카탈리스트(Cisco Catalyst) 기본 설정

    Date2013.04.23 CategorySystem/OS Byhooni Views17497
    Read More
  7. [switch] 시스코 카탈리스트(Cisco Catalyst) 2950 미러링 설정

    Date2013.04.23 CategoryDevelop Byhooni Views11392
    Read More
  8. [c] 시스템 보안 과제.. 시간(amc time) 변경

    Date2013.04.23 CategoryDevelop Byhooni Views7194
    Read More
  9. [c] 암호 알고리즘 소스..

    Date2013.04.23 CategoryDevelop Byhooni Views8342
    Read More
  10. [c] 지폰(gphone) 소스.. 수정(암호화)

    Date2013.04.23 CategoryDevelop Byhooni Views7434
    Read More
  11. [perl] 영규가 만든 스크립트.. 하하..

    Date2013.04.23 CategorySystem/OS Byhooni Views10597
    Read More
  12. [c] 파일(int fd)에서 개행문자 단위로 읽기 by 후리자

    Date2013.04.23 CategoryDevelop Byhooni Views7152
    Read More
Board Pagination Prev 1 ... 23 24 25 26 27 28 29 30 31 32 ... 98 Next
/ 98