//Variable1 - shows the declaration and assignment of a variable public class Variable1 { public static void main(String[] args) { int number; number = 5; System.out.print("The value of the variable \"number\" is "); System.out.println(number); } }