Skip to main content

To find: a^5 + b^4 * ( a^2 / b^2 – bab)^2



2.
To find: a^5 + b^4  * ( a^2 / b^2 – bab)^2


#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
        int a,b,c;
        clrscr();
        printf("enter the value of a and b=");
        scanf("%d%d",&a,&b);
        c=pow(a,5)+pow(b,4)*pow((pow(a,2))/(pow(b,2)-(b*a*b)),2);
        printf("%d",c);
        getch();
}


Comments