00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #include <math.h>
00024 #include <stdio.h>
00025 #include <stdlib.h>
00026
00030 void PressKey()
00031 {
00032 fflush(stdout);
00033 getchar();
00034 }
00039 int main()
00040 {
00041 double inputValue = 0.0;
00042 double gammaValue = 0.0;
00043
00044 printf("Welcome to the libm example!!!\n");
00045 printf("This example demonstrates the use of the gamma function from the math library.");
00046
00047 printf("\n\nEnter an input value for the gamma function:");
00048
00049 scanf("%lf",&inputValue);
00050
00051 gammaValue = gamma(inputValue);
00052 printf("\nThe gamma of %lf is %lf\n",inputValue,gammaValue);
00053 PressKey();
00054 printf("\n Press Enter key to exit");
00055 PressKey();
00056
00057 return EXIT_SUCCESS;
00058 }