Computer Science, asked by harayuli2403, 9 months ago

Rewrite the program segment using multiple if construct:
if(n%2==0&&n>35&&n<67)
{
a=a+4; n=n/a; rem=n%10;
}

Answers

Answered by IamGenesis
10

Answer:

if(n%2==0){

   if(n>35){

       if(n<67){

           a=a+4;

           n=n/a;

           rem=n%10;

       }

   }

}

Similar questions