Assignment #41

Code

    /// Name: Jonathan Stine
    /// Period: 5
    /// Program Name: Using Swing for Input
    /// File Name: UsingSwingForInput.java
    /// Date Finished: 1/19/16
    
    import javax.swing.*;
    
    public class UsingSwingForInput {
        
        public static void main( String[] args ) {
            
            String name = JOptionPane.showInputDialog( "What is your name?" );
            
            String input = JOptionPane.showInputDialog( "How old are you?" );
            int age = Integer.parseInt(input);
            
            System.out.print( "Hello, " + name + "." );
            System.out.println( " Next year, you'll be " + (age+1) );
            
            System.exit(0);
            
        }
    }

    
 
    

Code Output