home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat156.c */
- /*------------------------------------------------------------------*/
- #include <stdlib.h>
- #include <stdio.h>
-
- void main()
- {
- int i;
-
- srand(200);
- for(i=0; i<10; i++)
- printf("%d\n", rand()) ;
-
- printf("\n");
- srand(1);
- for(i=0; i<10; i++)
- printf("%d\n", rand()) ;
- }