#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main() {
int x, y;
printf("멈출수: ");
scanf("%d", &y);
srand(time(NULL));
while(1) {
x=(rand()%8)+1;
printf("난수: %d", x);
if(x==y) break;
getchar();
}
printf("%d 가 나와서 끝남.", y);
return 0;
}
'c·c++ > c 프로그래밍' 카테고리의 다른 글
삼항 연산자 사용 대소문자 바꾸기 (0) | 2012.04.08 |
---|---|
비순환적 순열 (0) | 2012.04.06 |
4x4 역행렬 (0) | 2012.04.01 |
대소문자 변환, main의 순환 호출 (0) | 2012.03.31 |
3항 연산자의 극단적 사용예 (0) | 2012.03.31 |