DEV Community

Guna Sekaran
Guna Sekaran

Posted on

Using Scanner class in java Program

package array;

import java.util.Scanner;

public class Scanner_array {
    public static void main(String[] args) {

         Scanner scanner = new Scanner(System.in);
         System.out.println("Enter Your name:");
         String name=scanner.nextLine();
         System.out.println("Welcome to java "+name);

    }

}

.........................................................................

OUTPUT:
Enter Your name:
Guna
Welcome to java Guna

Enter fullscreen mode Exit fullscreen mode

Top comments (0)

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay