Computer Science, asked by ashwin41566, 5 months ago

Write a java program to print Your Name On Screen
[ Initialization of Variables]​

Answers

Answered by ay1618277
4

Answer:

import java.util.*;

class UserInputDemo1.

{

public static void main(String[] args)

{

Scanner sc= new Scanner(System.in); //System.in is a standard input stream.

System.out.print("Enter a string: ");

String str= sc.nextLine(); //reads string.

Similar questions