/******************************************* First Cs160 program Spring 05 @author Hunter Lloyd @version 1.0 ***************************************************/ public class Jan24 { public static void main(String [] args) { //Declaring strings, first is initialized by static string, second by a variable String name = "hunter"; String secondname = name; //declaring integers, second one is initialized int number; int second = 52; //printing out a static string System.out.println("Hello cs160 lhjlsdfhlksdfhl"); //initializing the int number number = 5+6*7; //changing the value of number number = number +6; //printing out a variable System.out.println(number); System.out.println(name); //printing out a static string and a variable on the same line System.out.println("My name variable holds the value: " + name); } }