Primitive Wrapper Classes Exercises |
< Previous Next > |
Scanner stdinScanner = new Scanner( System.in ); System.out.print( "Please enter the year you were born: " ); String birthYearStr = stdinScanner.nextLine(); int csuBirthYear = 1958; /* Display the difference between the user's age and CSU's */