while(n>0){
int check=n%10;
if(check==0)
???????
if(n%check==0)
divi++;
}
how would we stay inside this while loop at the same time leaving the if (check==0) loop if that condition is hit? like instead of break; because i dont want to exit the while loop. i tried continue; but i got error for that.