Ramirez_RD

DoWhileLoop

Feb 24th, 2025
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.31 KB | None | 0 0
  1. package Samson_Angel_Exercise;
  2.  
  3. public class DoWhileLoopDemo {
  4.     static void DoWhileLoop(){
  5.         int a = 1;
  6.        
  7.         do{
  8.             System.out.println("Iteration: "+a);
  9.             a++;
  10.         }while(a <= 5);
  11.     }
  12.     public static void main(String []args){
  13.         DoWhileLoop();
  14.     }
  15. }
  16.  
Advertisement
Add Comment
Please, Sign In to add comment