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