Assignemnt #14 and More Variables And Printing

Code

    
  /// Name: Nick Cerdan
  /// Period: 6
  /// Program Name: MoreVariablesAndPrinting
  /// File name: MoreVariablesAndPrinting.java
  /// Date Finished; 9/11/15
  
  public class MoreVariablesAndPrinting
  {
      public static void main( String[] args )
      {
          String Name, Eyes, Teeth, Hair;
          int Age, Height, Weight;
          double Heightcm, Weightkilo;
  
          Name = "Nick P. Cerdan";
          Age = 16;     // not a lie
          Height = 69;  // inches
          Heightcm = Height*2.54;
          Weight = 130; // lbs
          Weightkilo = Weight*0.453592;
          Eyes = "Brown";
          Teeth = "White";
          Hair = "Brown";
  
          System.out.println( "Let's talk about " + Name + "." );
          System.out.println( "He's " + Height + " inches (or " + Heightcm + " cm) tall." );
          System.out.println( "He's " + Weight + " pounds (or " + Weightkilo + " kilograms)." );
          System.out.println( "Actually, that's not too heavy." );
          System.out.println( "He's got " + Eyes + " eyes and " + Hair + " hair." );
          System.out.println( "His teeth are usually " + Teeth + " depending on the coffee." );
  
          // This line is tricky; try to get it exactly right.
          System.out.println( "If I add " + Age + ", " + Height + ", and " + Weight
              + " I get " + (Age + Height + Weight) + "." );
      }
  }
    
    Assignment 4