what is looping constructive in java
Answers
Answered by
1
Explanation:
A do loop allows a block of code to be executed once or many times. As with the while() loop, the do loop is terminated when the boolean condition evaluates to false . Unlike the while() loop, the do loop is always executed at least once.
Similar questions