Advertisement
KodingKid

Java while-loop - Basic Scripting #13

May 20th, 2021
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.10 KB | None | 0 0
  1. int a = 5;
  2. int b = 10;
  3. while (b > a)
  4.     System.out.println("This message is on a while-loop!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement