Calculate man power on bed
#include <iostream>
#include <cmath>
using namespace std;
//oya na
class ManPowerOnBed {
public:
int style;
int round;
bool blwjob;
int result1=(round*style)/2;
int result2=(round*style)/4;
//na the koko be dis
void koko(){
if (blwjob=true&&result1>=4.5)
cout <<"Your score na: "<<result1<<"and you strong well";
else if (blwjob=true&&result1<4.5)
cout <<"Your score na: "<<result1<<"and you be akamu";
if (blwjob=false&&result2>=4.5)
cout <<"Your score na: "<<result2<<"and you strong well";
else if (blwjob=false&&result2<4.5)
cout <<"Your score na: "<<result2<<"and you be akamu";
};
};
//make we chook
int main(){
ManPowerOnBed tunde;
tunde.style;
tunde.round;
tunde.blwjob;
cout <<"Dey give you blwjob? True or False:"<<endl;
cin >> tunde.blwjob;
cout <<"How many round you chook?"<<endl;
cin >> tunde.round;
cout << "How many style?"<<endl;
cin >> tunde.style;
tunde.koko();
return 0;
}