Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save naemazam/2d967f272b6d821620f38498efe75fb6 to your computer and use it in GitHub Desktop.
Save naemazam/2d967f272b6d821620f38498efe75fb6 to your computer and use it in GitHub Desktop.
/*
num is static -> no need to initialize (=0)
(int)'d' = ascii value of 'd' (=100)
*/
public class Program
{
static int num;
public static void main(String[] args) {
while(num < (int)'d'){
num++;
System.out.println(num);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment