Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #include <iostream>
  2. #include <math.h>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. float obsah,obvod,strana;
  9. cout << "Zadajte obsah stvorca: ";
  10. cin >> obsah;
  11. strana = sqrt(obsah);
  12. obvod = obsah*4;
  13. cout << "Obvod stvorca je " << obvod << endl ;
  14. cout << "Strana stvorca je " << strana;
  15. char reakcia;
  16. cin >> reakcia;
  17. return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement