Assignment #14
Code
/// Name: Kabir Virk
/// Period: 6
/// Program Name: MoreVariablesAndPrintings
/// File Name: MoreVariablesAndPrinting.java
/// Date Finished: 9/17/2015
public class MoreVariablesAndPrinting
{
public static void main( String[] args )
{
String myName, myEyes, myTeeth, myHair;
int myAge, myHeight, myWeight;
myName = "Kabir S. Virk";
myAge = 16; //
myHeight = 187; // cm
myWeight = 63; // kilos
myEyes = "Brown";
myTeeth = "White";
myHair = "Black";
System.out.println( "Let's talk about " + myName + "." );
System.out.println( "He's " + myHeight + " inches tall." );
System.out.println( "He's " + myWeight + " pounds." );
System.out.println( "Actually, that's not too heavy." );
System.out.println( "He's got " + myEyes + " eyes and " + myHair + " hair." );
System.out.println( "His teeth are usually " + myTeeth + " depending on the coffee." );
// This line is tricky; try to get it exactly right.
System.out.println( "If I add " + myAge + ", " + myHeight + ", and " + myWeight
+ " I get " + (myAge + myHeight + myWeight) + "." );
}
}
Picture of the output