Assignemnt #19 Asking Questions

Code

    ///Name: Prooz Fereydouni
    ///Period: 7
    ///Project Name: Asking Questions
    ///File Name: AQ.java
    ///Date: 9/22/2015
import java.util.Scanner;
    
public class AQ
{
    public static void main( String[] args )
    {
        Scanner keyboard = new Scanner(System.in);
        
        int age;
        int heightFeet;
        int heightInch;
        double weight;
        
        System.out.print( "How old are you? " );
        age = keyboard.nextInt();
        
        System.out.print( "How many feet tall are you? " );
		heightFeet = keyboard.nextInt();
        
        System.out.print( "And how many inches? " );
		heightInch = keyboard.nextInt();

		System.out.print( "How much do you weigh? " );
		weight = keyboard.nextDouble();

		System.out.println( "So you're " + age + " old, " + heightFeet + "'" + heightInch + "\"" + " tall and " + weight + " pounds." );
	}
}
    

Picture of the output

assignment19