fork download
  1. #include <math.h>
  2. #include <stdio.h>
  3. #include <string.h>
  4.  
  5. int main()
  6. {
  7. double x, f;
  8. int y;
  9. char buf[80];
  10.  
  11. for (x = -3.0; x <= 3.1; x += 0.2) {
  12. f = 1.0 / pow(2.0 * M_PI, 0.5) * exp(-(x * x / 2.0));
  13. y = f * 100.0;
  14. memset(buf, '*', y);
  15. buf[y] = '\0';
  16. printf("% 3.1f %.3f %s\n", x, f, buf);
  17. }
  18. return 0;
  19. }
  20.  
Success #stdin #stdout 0.02s 1676KB
stdin
Standard input is empty
stdout
-3.0 0.004 
-2.8 0.008 
-2.6 0.014 *
-2.4 0.022 **
-2.2 0.035 ***
-2.0 0.054 *****
-1.8 0.079 *******
-1.6 0.111 ***********
-1.4 0.150 **************
-1.2 0.194 *******************
-1.0 0.242 ************************
-0.8 0.290 ****************************
-0.6 0.333 *********************************
-0.4 0.368 ************************************
-0.2 0.391 ***************************************
 0.0 0.399 ***************************************
 0.2 0.391 ***************************************
 0.4 0.368 ************************************
 0.6 0.333 *********************************
 0.8 0.290 ****************************
 1.0 0.242 ************************
 1.2 0.194 *******************
 1.4 0.150 **************
 1.6 0.111 ***********
 1.8 0.079 *******
 2.0 0.054 *****
 2.2 0.035 ***
 2.4 0.022 **
 2.6 0.014 *
 2.8 0.008 
 3.0 0.004