Advertisement
Guest User

Untitled

a guest
May 21st, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #include <iostream>
  2. #include <cmath>
  3. using namespace std;
  4.  
  5. float liczba;
  6.  
  7. int main()
  8. {
  9.  
  10. cout<<"podaj liczbe:";
  11. cin>>liczba;
  12. cout<<"round:" <<round(liczba)<<endl;
  13. cout<<"ceil:" <<ceil(liczba)<<endl;
  14. cout<<"floot:" <<floor(liczba)<<endl;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement