hahahia

난수 생성 srand 함수 본문

Language/C

난수 생성 srand 함수

hahahia 2011. 5. 27. 09:32

/* made by hahahia */

#include <stdio.h>

#include <time.h>

#include <stdlib.h>

void main()

{

        int A, i;

        srand(time(NULL));

        for(i=0; i<100; i++){

               A=rand()%100+1;

               printf("  %d ", A);

        }

}

 

그냥뭐... srand 쓸 줄 알면 되는거같다 ㅎ

'Language > C' 카테고리의 다른 글

포인터(Pointer)  (0) 2012.02.17
숫자 baseball game  (0) 2012.02.16
지역 변수와 전역 변수  (0) 2011.05.22
C언어 함수  (0) 2011.05.22
ab + ba = 99 를 만족하는 a, b값 구하는 프로그램  (0) 2011.05.13
Comments