Develop
2013.04.23 15:07
[c] 로또(Lotto) 번호 생성기
조회 수 8279 댓글 0
첨부 '1' |
---|
단, 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
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
433 | System/OS | [linux] iptables 명령어 매뉴얼(options) | hooni | 2003.04.23 | 12622 |
432 | Develop | [js] 인터넷 주소(URL) 인코딩 ㅋㅋ | hooni | 2013.04.23 | 12646 |
431 | PPT |
[network] tcp/ip 설명 html파일 9장(ppt 포함)
![]() |
hooni | 2013.04.23 | 12647 |
430 | Develop | [vbs] CD롬 뱉는 스크립트.. | hooni | 2003.04.23 | 12670 |
429 | Develop | [c++] String Tokenizer (나중에 c 코드로 변경해서 사용할 것) | hooni | 2013.04.23 | 12693 |
428 | Develop | [c++] 기초강좌 #02(레퍼런스,메모리할당) | hooni | 2003.04.23 | 12696 |
427 | System/OS | [linux] 텔넷, FTP 텍스트 모드에서 사용 | hooni | 2003.04.23 | 12707 |
426 | Develop | [c++] RSA Sample 4 CPP | hooni | 2013.04.23 | 12707 |
425 | Develop |
페이팔에서 돈 찾기 (Paypal withdraw)
![]() |
hooni | 2014.02.20 | 12746 |
424 | Develop | [php] 배열 관련 함수 설명 ㅎㅎ | hooni | 2003.04.23 | 12747 |
423 | Develop |
[swift] NotificationCenter 간단 예제
![]() |
hooni | 2021.01.27 | 12770 |
422 | Develop |
[c] 테트리스(Tetris) 게임(도스용) 소스코드
![]() |
hooni | 2003.04.23 | 12780 |