Skip to content

Instantly share code, notes, and snippets.

@Shavindra
Last active August 29, 2015 14:27
Show Gist options
  • Save Shavindra/c7e731c34d5923514e78 to your computer and use it in GitHub Desktop.
Save Shavindra/c7e731c34d5923514e78 to your computer and use it in GitHub Desktop.
public static void whileLoop(){
System.out.println("\nEXAMPLE: While Loop");
int num = 0;
while(num <= 20) { // Check the while condition first, Then execute the loop
// Then while 'l' is less than or equal to '0'
System.out.println("num = " + num);
num++; //increment 'l' by 1
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment