Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class P04ConcatenateData {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- String firstName = scanner.nextLine();
- String lastName = scanner.nextLine();
- int age = Integer.parseInt(scanner.nextLine());
- String city = scanner.nextLine();
- System.out.println("You are " + firstName + " " + lastName + ", a " + age + "-years old person from" + " " + city + ".") ;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment