class newloop{
public static void main(String args[]){
int a=6;
int b=12;
while(a<b){
System.out.println("in the loop");
a+=2;
b-=2;
}
}
}
Answers
Answered by
0
Answer:
what question is this????????
Similar questions