fork download
  1. #include <math.h>
  2. #include <stdio.h>
  3. #include <string.h>
  4.  
  5. int main()
  6. {
  7. double x, z, f;
  8. char buf[50];
  9. int y;
  10.  
  11. memset(buf, '*', 50);
  12. for (x = -3.0; x <= 3.1; x += 0.2) {
  13. z = x / pow(M_PI, 0.5);
  14. f = 1.0 / 2.0 * (1.0 + erf(z));
  15. y = f * 50.0;
  16. printf("% 3.1f %5.3f %.*s\n", x, f, y, buf);
  17. }
  18. return 0;
  19. }
  20.  
Success #stdin #stdout 0.02s 1720KB
stdin
Standard input is empty
stdout
-3.0 0.008 
-2.8 0.013 
-2.6 0.019 
-2.4 0.028 *
-2.2 0.040 *
-2.0 0.055 **
-1.8 0.075 ***
-1.6 0.101 *****
-1.4 0.132 ******
-1.2 0.169 ********
-1.0 0.212 **********
-0.8 0.262 *************
-0.6 0.316 ***************
-0.4 0.375 ******************
-0.2 0.437 *********************
 0.0 0.500 *************************
 0.2 0.563 ****************************
 0.4 0.625 *******************************
 0.6 0.684 **********************************
 0.8 0.738 ************************************
 1.0 0.788 ***************************************
 1.2 0.831 *****************************************
 1.4 0.868 *******************************************
 1.6 0.899 ********************************************
 1.8 0.925 **********************************************
 2.0 0.945 ***********************************************
 2.2 0.960 ************************************************
 2.4 0.972 ************************************************
 2.6 0.981 *************************************************
 2.8 0.987 *************************************************
 3.0 0.992 *************************************************