728x90
#include <stdio.h> #include <stdlib.h> #include <time.h> void main() { int ran;//정수변수 선언 srand(time(NULL));//랜덤정수 생성 ran=rand() % 10+1;//생성한수 범위지정( 1~10 ) printf("%d\n",ran);//출력 }응용하면된다.
'it > programming' 카테고리의 다른 글
반복문 학습용 파일 (4) | 2012.04.12 |
---|---|
이제부터 웹프밍 언어에 대한건 여따 올릴게여 (0) | 2012.04.08 |
피보나치 수열을 원하는 번째까지 출력하자 (0) | 2012.03.30 |