UltraVasko

Task

Feb 21st, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.41 KB | None | 0 0
  1. import java.util.*;
  2. public class Class {
  3.  
  4.     public static void main(String[] args) {
  5.         Scanner input=new Scanner(System.in);
  6.         System.out.println("Enter your new username: ");
  7.         String username=input.nextLine();
  8.         System.out.println("Enter your passsword: ");
  9.         String password=input.nextLine();
  10.        
  11.         User newUser= new User(username,password,1452);
  12.         User.AddFollowing(6);
  13.         User.printData();
  14.        
  15.     }
  16.        
  17. }
Add Comment
Please, Sign In to add comment