Advertisement
Guest User

Untitled

a guest
Jun 27th, 2021
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void main()
  5. {
  6. int a, b;
  7.  
  8. cout << "Unesite prvu stranicu pravougaonika " << endl;
  9. cin >> a;
  10. cout << "Unesite drugu stranicu pravougaonika " << endl;
  11. cin >> b;
  12.  
  13. cout << "Obim pravougaonika je: " << 2 * a + 2 * b << endl;
  14. cout << "Povrsina pravougaonika je: " << a * b << endl;
  15.  
  16. system("PAUSE");
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement