fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <time.h>
  4.  
  5. int main()
  6. {
  7. int i=0,a;
  8.  
  9. srand( time(0) ); //乱数のタネを与える
  10.  
  11. while( i<19 )
  12. {
  13. a = rand(); //乱数を発生させ変数aに代入
  14. printf("%d\n",a);
  15.  
  16. i = i+1;
  17. }
  18. return 0;
  19. }
Success #stdin #stdout 0s 5312KB
stdin
Standard input is empty
stdout
1346752655
1803284623
940717566
962660546
900035633
1063606864
1855706867
776275348
1898632193
251951512
2146061671
2146961341
1814163642
1955088372
1900643318
542974403
2137641263
1625984758
461034945