fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. srand(time(0));
  6. float a;
  7. for(int i=0;i<10;i++){
  8. a = (rand() % 201) -100;
  9. a = a / 100;
  10. printf("%.2f\n",a);
  11. }
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
0.69
0.19
0.74
-0.44
0.83
-0.17
-0.63
0.76
-0.64
-0.22