fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <math.h>
  4.  
  5. int main()
  6. {
  7. double input = 0;
  8. double exp_val;
  9. printf("Plese enter the exponent to check for convergence:\n");
  10. scanf("%lf", &input);
  11. printf("%f\n", input);/*Checking to verify the input is entered*/
  12. exp_val = exp(input);
  13. printf("%f\n", exp_val);
  14. }
Runtime error #stdin #stdout 0s 2296KB
stdin
5.23
stdout
Plese enter the exponent to check for convergence:
5.230000
186.792804