Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <cmath>
- #include <iomanip> // для функции setprecision();
- using namespace std;
- int main()
- {
- setlocale(LC_ALL, "rus");
- cout << setprecision(16); // устанавливаем точность после запятой до 16 знаков
- long double x,y,d;
- int k,m,n,i;
- cout<<" Введите x = ";
- cin>>x;
- cout<<endl<<"Введите y = ";
- cin>>y;
- d = ((1 - tan(x * pow(y, 2))) / pow(x, 1.0 / 3.0)) + 4 * sqrt(pow(x, 2) - 0.1);
- k = d;
- i = ceil(d);
- m = floor(d);
- n =static_cast<int>(d);
- cout<<endl<<"Результат d = "<<d;
- cout<<endl<<"Округление в большую сторону i = "<<i;
- cout<<endl<<"Целая часть результата m = "<<m;
- cout<<endl<<"Целое k = "<<k;
- cout<<endl<<"Целое n = "<<n;
- cout<<endl<<"Значение префиксного выражения ++k = "<<++k;
- cout<<endl<<"Значение постфиксного выражения n++ = "<<n++;
- cout<<endl<<"Значение после приращения k = "<<k;
- cout<<endl<<"Значение после приращения n = "<<n<<endl;
- system("PAUSE");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement