#include <stdio.h>
#include <stdlib.h>
int main()
{
float x=3.1415026535897932;
printf("%.15f\n",x);
double y=3.1415926535897932;
printf("%.15f\n",y);
int a=24,b=7;
double c=a/b;
printf("%.6lf",c);
system("pause");
return 0;
}
#include <stdio.h>
#include <stdlib.h>
int main()
{
float x=3.1415026535897932;
printf("%.15f\n",x);
double y=3.1415926535897932;
printf("%.15f\n",y);
int a=24,b=7;
double c=a/b;
printf("%.6lf",c);
system("pause");
return 0;
}