0 0
Read Time:58 Second

Write a program to input and display the sentence “I love candies

import java.util.Scanner;

public class DisplaySentence {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        System.out.println("Enter a sentence: ");
        String sentence = scanner.nextLine();
        System.out.println("You entered: " + sentence);
    }
}

Output:

Enter a sentence: I love candies
You entered: I love candies

Explanation:

  • We start by importing the Scanner class from the java.util package. This will allow us to read input from the user.
  • Next, we define a main method which is the entry point of the program.
  • Inside the main method, we create a Scanner object named scanner which will be used to read input from the user.
  • We then prompt the user to enter a sentence by calling the System.out.print method to print the message “Enter a sentence: ” to the console.
  • We then use the scanner.nextLine() method to read a line of text from the user, which is stored in the sentence variable.
  • Finally, we print the sentence back to the console using the System.out.println method, along with a message indicating that the user entered that sentence.
Happy
Happy
0 %
Sad
Sad
0 %
Excited
Excited
0 %
Sleepy
Sleepy
0 %
Angry
Angry
0 %
Surprise
Surprise
0 %

Average Rating

5 Star
0%
4 Star
0%
3 Star
0%
2 Star
0%
1 Star
0%

Leave a Comment