PROGRAMMING AND CODE


Assignemnt #16

Code

  /// Name: Justin Li
  /// Period 7
  /// Program Name: Still Using Variables 
  /// File Name: StillUsingVariables.java
  /// Date Finished: 9/15/15

  class StillUsingVariables {
  
      public static void main(String[]args) {
      
          int year;
          String name;
        
              
          year = 2017;
          name = "Justin Li";
          
          System.out.println("My name is " + name + " and I'll grauate in " + year);

          
          
      }
  }
    

Picture of the output

Assignment 1