Hisworld.tistory.com
The hisWorld
(140)
hisworld_new
(0)
hisOld
(138)
Android
(7)
Computer Vision
(18)
JAVA
(4)
C/C++
(26)
열혈강의 C
(32)
TCP/IP socket
(12)
WinAPI
(16)
System Programming
(0)
etc
(23)
Plan
(0)
hisWorld
(0)
hiStory
(0)
hiStudy
(0)
hiSnap
(0)
홈
태그
미디어로그
위치로그
방명록
Windows Live Messenger
winapi
Join C
대학생 공모전
The Turing test page
훈스닷넷
C/C++ Reference
WIKI
/
/
블로그 내 검색
열혈강의 C 도전 프로그래밍 THREE - 3
URUZ-7
2008. 2. 11. 11:58
2008. 2. 11. 11:58
0에서 99까지 난수 5개 생성
#include <stdio.h> #include <stdlib.h> int main(void) { int i; printf("난수의 범위 : 0부터 99까지\n"); for(i=0; i<5; i++) printf("난수 출력 : %d\n",rand()%99); return 0; }
수정
#include <stdio.h> #include <stdlib.h> #include <time.h> int main(void) { int i; srand(time(NULL)); printf("난수의 범위 : 0부터 99까지\n"); for(i=0; i<5; i++) printf("난수 출력 : %d\n",rand()%99); return 0; }
공유하기
게시글 관리
Hisworld.tistory.com
+ Recent posts
Powered by
Tistory
, Designed by
wallel
Rss Feed
and
Twitter
,
Facebook
,
Youtube
,
Google+
티스토리툴바