Skip to content

Instantly share code, notes, and snippets.

@msomu
Last active August 29, 2015 14:08
Show Gist options
  • Save msomu/175e5439cf8e54304f4a to your computer and use it in GitHub Desktop.
Save msomu/175e5439cf8e54304f4a to your computer and use it in GitHub Desktop.
Variable in Java
The number is 5.
It can also be written as this 5
public class Variables {
public static void main(String[] args) {
int i=5;
System.out.print("The number is ");
System.out.print(i);
System.out.println(".");
System.out.print("It can also be written as this "+i);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment