Ramirez_RD

ForLoop

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