KnowledgeBoat Logo

Computer Applications

Write down the construct (syntax) of Nested while loop

Java Nested for Loops

14 Likes

Answer


while (<condition>) {
      //statements of outer while loop
      ..
      ..
      while (<condition>) {
            //statements of inner while loop
      }
      ..
      ..
}

Answered By

9 Likes


Related Questions