Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. package com.company;
  2.  
  3. import java.io.Console;
  4.  
  5. public class Main {
  6.  
  7. public static void main(String[] args) {
  8. String name;
  9. Console con =System.console();
  10. name=con.readLine("Введите свое имя: ");
  11. System.out.println("добро пожаловать, " + name);
  12. // write your code here
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement