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