Assignemnt #19

Code

 /// Name: Daniel Nguyen
 /// Period: 6
 /// Program Name: CreatingVariables Program
 /// File Name: CreatingVariables.java
 /// Date Finished: 9/9/2015

import java.util.Scanner;

public class AskingQuestions
{
	public static void main( String[] args )
	{
		Scanner keyboard = new Scanner(System.in);

		int age, heightin, heightft;
		double weight;

		System.out.print( "How old are you? " );
		age = keyboard.nextInt();

		System.out.print( "How many feet tall are you? " );
		heightft = keyboard.nextInt();
        
        System.out.print( "and inches? " );
		heightin = keyboard.nextInt();

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

		System.out.println( "So you're " + age + " years old, " + heightft + " feet tall, " + heightin + " inches, and " + weight + " pounds." );
	}
}
    

Picture of the output

Assignment 3
BACK HOME NEXT