#include <stdio.h>
#include<math.h>
int main()
{
float a,b,sum;
int d;
a=10.257;
b=2589.257;
d=18;
sum=a+b+d;
printf("The sum of the three numbers=%0.2f\n",sum);
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: