Advertisement
SotirovG

GreetingByName_05

Oct 28th, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. package FirstStepsInCodingLab;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class GreetingByName_05 {
  6.     public static void main(String[] args) {
  7.         Scanner scanner = new Scanner(System.in);
  8.         String name = scanner.nextLine();
  9.         System.out.printf("Hello, %s!",name);
  10.     }
  11. }
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement