Ramirez_RD

WhileLoop

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