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


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
337 Develop [c] 단기과정[01/08] 배열, 포인터 hooni 2003.04.23 7223
336 Develop [html] 메타태그 사용예.. 은지나 바라~ hooni 2003.04.23 7219
335 Develop [php] 웹 터미널 & 업로드 소스.. file hooni 2013.04.23 7216
334 Develop [js] 네이버에서 그림 퍼올 때.. URL Encoding 관련ㅋㅋ hooni 2013.04.23 7208
333 Develop [c] 네트워크 관련 프로그래밍 (포트스캔 탐지 샘플) file hooni 2013.04.23 7196
332 Develop [c] 시스템 보안 과제.. 시간(amc time) 변경 file hooni 2013.04.23 7193
331 Develop [c] 함수 목록과 예제 소스 파일 file hooni 2013.04.23 7189
330 Develop [c] 문자열 라이브러리 최신버전 file hooni 2003.04.23 7188
329 Develop [c] 연산자 우선순위.. ㅋㅋ hooni 2013.04.23 7183
328 Develop [c] 시스템공학 레포트 (pass1, pass2) file hooni 2003.04.23 7179
» Develop [c] 로또(Lotto) 번호 생성기 file hooni 2013.04.23 7174
326 Develop [c] 가변인자 함수(printf와 같은..) hooni 2013.04.23 7165
Board Pagination Prev 1 ... 38 39 40 41 42 43 44 45 46 47 ... 71 Next
/ 71