+ 1
Make nested loop in java
Can i use while or do while to make nested loop?
4 Respuestas
0
yes you can . Go through the tutorials and try understanding it. 
Every loop can be nested .
0
better than i use for?
0
yes you can use any .
0
i=0;
while(i<5)
{
      if(i==4)
      {
      //statement
      }
//Statement
}
i++;



