You are viewing a single comment's thread. Return to all comments →
void update_val(int new_val) { if(new_val<1 || new_val>10000) return; while(val < new_val) { if((new_val/val)%5 == 0) C::func(val); if((new_val/val)%3 == 0) B::func(val); if((new_val/val)%2 == 0) A::func(val); } }
Seems like cookies are disabled on this browser, please enable them to open this website
Accessing Inherited Functions
You are viewing a single comment's thread. Return to all comments →