//program 9.cpp #include "stdafx.h" #include "iostream" #include "conio.h" #include "stdio.h" using namespace std; class salary { public: int monthH; int Ho; int Sa; float Da; float END(); salary(); }; float salary::END() { return (Ho+(Sa*((Ho/monthH))*1.4))-((Da*Ho)/100); } salary::salary() { monthH=195; Ho=200000; Sa=10; Da=3; } int main() { salary human; cout<<"HOGHOGHE PAYE : "; cin>>human.Ho; cout<<"SA@TE Ezafe kari : "; cin>>human.Sa; cout<<"DarSade maLiyaT : "; cin>>human.Da; cout<<"\n\nYour HOGHOGHE PAYE is : "< > "<