main.cpp
By: a guest | Mar 16th, 2010 | Syntax:
C++ | Size: 0.28 KB | Hits: 32 | Expires: Never
#include <iostream>
#include "povrsina.h"
using namespace std;
int main() {
Pravokutnik a(1,2,3,4);
cout << a.Povrsina() << endl;
cout << a.Visina() << endl;
cout << a.Sirina() << endl;
cout << a.LijeviRub() << endl;
cout << a.DonjiRub() << endl;
return 0;
}