Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package Samson_Angel_Exercise;
- public class DoWhileLoopDemo {
- static void DoWhileLoop(){
- int a = 1;
- do{
- System.out.println("Iteration: "+a);
- a++;
- }while(a <= 5);
- }
- public static void main(String []args){
- DoWhileLoop();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment