| /home/chloe/NetBeansProjects/ADSV Java/lab5_ChloeFontenot/src/main/java/com/chloefontenot/lab5_chloefontenot/WhatsYourName.java |
nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt
nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java
package com.chloefontenot.lab5_chloefontenot;
import java.util.Scanner;
@author
public class WhatsYourName {
public static void main(String[] args)
{
Scanner input = new Scanner(System.in);
String firstName,
lastName;
System.out.print("What's your name? (Enter first and last) ");
firstName = input.next();
lastName = input.next();
System.out.println(firstName + " " + lastName + " is a beautiful name!");
}
}