146k views
3 votes
Assume that name has been declared suitably for storing names (like "Misha", "Emily" and "Sofia"). Assume also that stdin is a variable that references a Scanner object associated with standard input. Write some code that reads a value into name then prints the message "Greetings, NAME" on a line by itself, where NAME is replaced the value that was read into name. For example, if your code read in "Rachel" it would print out "Greetings, Rachel" on a line by itself.

User MeloS
by
5.4k points

1 Answer

0 votes

Answer:

String name = stdin.nextLine();

System.out.println("Greetings "+name);

Step-by-step explanation:

See a complete java program below

import java.util.Scanner;

public class num7 {

public static void main(String[] args) {

Scanner stdin = new Scanner(System.in);

System.out.println("Enter a name");

String name = stdin.nextLine();

System.out.println("Greetings "+name);

}

}

User Muthu Palanisamy
by
5.6k points