C- Expression_1.7

#include
double main (void)
{

double a=1.0,b=2.0,c=3.0,d=4.0;
double u,v,w;
u=a;
v=b*c/d-d;
w=u-v;
printf("%f\n",w);
return 0;

}

0 comments:

Post a Comment