Guest
Public paste!

main.cpp

By: a guest | Mar 16th, 2010 | Syntax: C++ | Size: 0.28 KB | Hits: 32 | Expires: Never
Copy text to clipboard
  1. #include <iostream>
  2. #include "povrsina.h"
  3.  
  4. using namespace std;
  5.  
  6. int main() {
  7.   Pravokutnik a(1,2,3,4);
  8.   cout << a.Povrsina() << endl;
  9.   cout << a.Visina() << endl;
  10.   cout << a.Sirina() << endl;
  11.   cout << a.LijeviRub() << endl;
  12.   cout << a.DonjiRub() << endl;
  13.   return 0;
  14.  
  15. }