#include <iostream.h> #include <conio.h> class persegi{ public: persegi(); protected: float s; }; persegi::persegi(){ cout<<endl; } class luas : public persegi{ public: void Luas_persegi(float); private: float L; }; void luas::Luas_persegi(float a){ s = a; L = s*s; cout<<"Luas Persegi = "<<L<<endl; } int main() { persegi z; float i; cout<<"Masukkan Sisi = "; cin>>i; luas y; y.Luas_persegi(i); getch (); return 0; }
0 komentar:
Posting Komentar