cout<<"enter the name of bexecisse : ";
cin>>nameOfExcresice;
cout<<"How many reptition have I done for first rep : ";
cin>>Reps;
cout<<"How many reptition have I done for second rep : ";
cin>>Reps1;
cout<<"How many reptition have I done for third rep : ";
cin>>Reps2;
cout<<"How many reptition have I done for fourth rep : ";
cin>>Reps3;
cout<<"How many reptition have I done for fifth rep : ";
cin>>Reps4;
cout<<"Enter the between each repition : ";
cin>>timeBsets;
}
void Gym::printDetalis(){
cout << "the Name of excesice is : "<<nameOfExcresice <<"\n the number of repetitons : "<<Reps<< ", "<< Reps1<<", "<< Reps2<<", "<< Reps3<<", "<< Reps4<<"\n and time b sets : "<<timeBsets<<" seconds"<<endl;
}
#include <iostream>
#include "Gym.hpp"
int main(){
Gym a ;
for (int i; i>10; i++) {
a.details( );
a.printDetalis();