الف)

#include <iostream.h>
#include <conio.h>
#include <math.h>

main()
{

    int x,y;
    cout << "Enter X:" << endl;
    cin>>x;
    y=(pow(x,3)+pow(x-5,2))/sqrt(pow(x,4)+5);
    cout<<"y=\t"<<y;
    getch();
}




نکته: به خاطر داشته باشید که ترتیب الویت عملگرها را درست رعایت کنید و از قرار دادن پرانتز اضافی بپرهیزید.


ب)



#include <iostream.h>
#include <conio.h>
#include <math.h>

main()
{

    int x,y;
    cout << "Enter X:" << endl;
    cin>>x;
    y=sqrt((pow(x,5)+pow(x-5,3)+x+1)/6);
    cout<<"y=\t"<<y;
    getch();
}