fork download
  1. #include<stdio.h>
  2. void my_rand(){
  3. static int seed = 1;
  4. seed = seed * 214013 + 2531011;
  5. printf("%d\n",seed);
  6. }
  7.  
  8. int main(){
  9.  
  10. int i;
  11. for(i = 0 ; i < 10 ; i++ ){
  12. printf("%d回目 ", i+1);
  13. my_rand();
  14. }
  15.  
  16. return(0);
  17. }
Success #stdin #stdout 0.02s 1720KB
stdin
Standard input is empty
stdout
1回目 2745024
2回目 -937167229
3回目 415139642
4回目 -410750699
5回目 -891166844
6回目 1030492215
7回目 752224798
8回目 1924036713
9回目 1766988168
10回目 -544181717