Advertisement
kirya_shkolnik

Untitled

Oct 13th, 2020
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.14 KB | None | 0 0
  1.  
  2. #include <iostream>
  3. #include <cmath>
  4. #include <iomanip> // для функции setprecision();
  5. using namespace std;
  6. int main()
  7. {
  8. setlocale(LC_ALL, "rus");
  9. cout << setprecision(16); // устанавливаем точность после запятой до 16 знаков
  10. long double x,y,d;
  11. int k,m,n,i;
  12. cout<<" Введите x = ";
  13. cin>>x;
  14. cout<<endl<<"Введите y = ";
  15. cin>>y;
  16. d = ((1 - tan(x * pow(y, 2))) / pow(x, 1.0 / 3.0)) + 4 * sqrt(pow(x, 2) - 0.1);
  17. k = d;
  18. i = ceil(d);
  19. m = floor(d);
  20. n =static_cast<int>(d);
  21. cout<<endl<<"Результат d = "<<d;
  22. cout<<endl<<"Округление в большую сторону i = "<<i;
  23. cout<<endl<<"Целая часть результата m = "<<m;
  24. cout<<endl<<"Целое k = "<<k;
  25. cout<<endl<<"Целое n = "<<n;
  26. cout<<endl<<"Значение префиксного выражения ++k = "<<++k;
  27. cout<<endl<<"Значение постфиксного выражения n++ = "<<n++;
  28. cout<<endl<<"Значение после приращения k = "<<k;
  29. cout<<endl<<"Значение после приращения n = "<<n<<endl;
  30. system("PAUSE");
  31. return 0;
  32. }
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement