Respuesta :
Answer: if then elseif
Explanation:
It can be a chain of statement as shown below:
while(condition)
{
   if( condition){
    Then {
       }
     }
 Â
   else if {
   }
}
Answer:
If...Then...ElseIf
Explanation:
If... Then... ElseIf statement perform their tests, one after the other, until one of them is found to be true.