#include <iostream>
usingnamespace std;
#include <stdio.h>
int main( )
{
for( int a = 1; a < 11; a = a + 1 )
{
int a;
int b;
int c;
float x;
printf("Find d in d=(a^2+b^3+c^4)/(a+b+c).\n");
printf("Enter the value of a.\n");
scanf("&d",&a);
printf("Enter the value of b.\n");
scanf("&d",&b);
printf("Enter the value of c.\n");
scanf("&d",&c);
x = (a^2+b^3+c^4)/(a+b+c);
printf("d is equal to %f.\n",x);
return 0;
}
getchar();
}