Contents

Develop
2013.04.23 15:07

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

조회 수 8279 댓글 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


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
877 Develop [unix] 날짜 관련 쉘 명령어 (특정일 또는 +-시간, 날짜 계산된 값) hooni 2013.04.23 15855
876 Develop [ios] iOS In App Purchase 코드 부분 샘플 1 hooni 2013.11.20 15826
875 Develop [ios] iOS In App Purchase #2 (코드 구현) file hooni 2013.11.20 15824
874 Develop [api] 인스타그램에서 최신 이미지 가져오기 (Using Instagram API) 20 file hooni 2018.04.05 15805
873 System/OS [sql] 중복데이터 삭제 쿼리 hooni 2013.04.23 15766
872 Develop [C] C언어의 조건 연산자(Conditional Operator) hooni 2003.04.23 15739
871 Develop [ios] Objective-C에서 SQLite 사용하기.. file hooni 2013.04.23 15612
870 System/OS [linux] 랜카드 2개 설정 & iptables 로 사설 ip.. hooni 2003.04.23 15593
869 System/OS [linux] 리눅스 활용 팁^^ hooni 2003.04.23 15541
868 System/OS [linux] 아파치설치/설정(CGI부분) hooni 2003.04.23 15448
867 PPT [ppt] Magic URLs & Hidden Form Fields 에 대해.. ㅋㅋ file hooni 2013.04.23 15441
866 System/OS [linux] sendmail 설정/사용 hooni 2003.04.23 15425
Board Pagination Prev 1 ... 21 22 23 24 25 26 27 28 29 30 ... 99 Next
/ 99