Answer:
The program to this question can be given as:
Program:
import java.util.*; //import package
public class Person_detail //define class
{
public static void main(String ar[]) //define main function
{
String Name,hobby,dream_Job; //declare variable.
int age;
Scanner sc = new Scanner(System.in); //creating Scanner class object for user input.
System.out.print("Enter Your Name : "); //message
name = sc.next(); //user input
System.out.print("Enter Your Age : ");
age = sc.nextInt();
System.out.print("Enter Your hobby: ");
hobby = sc.next();
System.out.print("Enter Your aim: ");
aim = sc.next();
//print values.
System.out.println("Hello, my name is "+name+" and I am "+age);
System.out.println("years old.My hobby is playing "+hobby+".");
System.out.println("I want to be a "+aim+" when I grow up!");
}
}
Output:
Hello, my name is XXX and I am 21
years old.My hobby is playing cricket .
I want to be a cricketer when I grow up!.
Explanation:
In the above program firstly we import the package for user input. Then we declare a class that is Person_detail. In this class, we declare the main function. In the main function, we declare a variable that is name, hobby, aim, and age. In these variable first 3 variables datatype is string and age variable data type in integer. Then we create a scanner class object and take input from the user and print it into a paragraph.