Assignemnt #22

Code

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

import java.util.Scanner;
  
  public class CustomQuestions
  {
      public static void main( String[] args )
      {
          String name;
          int age;
          double weight, income;
 
         Scanner keyboard = new Scanner(System.in);
 
         System.out.print( "Hello. What is your name? " );
         name = keyboard.next();
 
         System.out.print( "Hi, " + name + "! How old are you? " );
         age = keyboard.nextInt();
 
         System.out.println( "So you're " + age + ", eh? That's not old at all." );
         System.out.print( "How much do you make, " + name + "? " );
         income = keyboard.nextDouble();
 
         System.out.println( income + "! I hope that's per hour and not per year! LOL!" );
     }
 }
    

Picture of the output

Assignment 3
BACK HOME NEXT