Contents

Develop
2013.04.23 15:07

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

Views 8279 Comment 0
Atachment
Attachment '1'
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
단, 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
No. Category Subject Author Date Views
313 Database [mysql] error while loading shared libraries: libmysqlclient.so.10: hooni 2003.04.23 15287
312 System/OS [linux] sendmail 설정/사용 hooni 2003.04.23 15424
311 PPT [ppt] Magic URLs & Hidden Form Fields 에 대해.. ㅋㅋ file hooni 2013.04.23 15440
310 System/OS [linux] 아파치설치/설정(CGI부분) hooni 2003.04.23 15448
309 System/OS [linux] 리눅스 활용 팁^^ hooni 2003.04.23 15540
308 System/OS [linux] 랜카드 2개 설정 & iptables 로 사설 ip.. hooni 2003.04.23 15593
307 Develop [ios] Objective-C에서 SQLite 사용하기.. file hooni 2013.04.23 15612
306 Develop [C] C언어의 조건 연산자(Conditional Operator) hooni 2003.04.23 15737
305 System/OS [sql] 중복데이터 삭제 쿼리 hooni 2013.04.23 15764
304 Develop [api] 인스타그램에서 최신 이미지 가져오기 (Using Instagram API) 20 file hooni 2018.04.05 15797
303 Develop [ios] iOS In App Purchase #2 (코드 구현) file hooni 2013.11.20 15824
302 Develop [ios] iOS In App Purchase 코드 부분 샘플 1 hooni 2013.11.20 15826
Board Pagination Prev 1 ... 68 69 70 71 72 73 74 75 76 77 ... 99 Next
/ 99