Accessing Inherited Functions

  • + 0 comments
    class D : public A , B, C
    {
    	int val;
    	public:
    		//Initially val is 1
    		 D()
    		 {
    		 	val = 1;
    		 }
    		 //Implement this function
    		 void update_val(int new_val)
    		 {
                 while (val!=new_val)
                 {
                     if ((new_val/val)%2==0){A::func(val);}
                     if ((new_val/val)%3==0){B::func(val);}
                     if ((new_val/val)%5==0){C::func(val);} 
                 }
    		 }
    		 //For Checking Purpose
    		 void check(int); //Do not delete this line.
    };