Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class ConcatenateData {
- 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 town = scanner.nextLine();
- System.out.println("You are " + firstName + ' ' + lastName + ", a " + age + "-years old person from " + town + '.');
- }
- }
- ИЛИ:
- import java.util.Scanner;
- public class ConcatenateData {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- String firstName = scanner.nextLine();
- String lastName = scanner.nextLine();
- Integer age = Integer.parseInt(scanner.nextLine());
- String town = scanner.nextLine();
- System.out.printf("You are %s %s, a %d-years old person from %s.", firstName, lastName, age, town);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement