Advertisement
Guest User

Untitled

a guest
Jun 8th, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.41 KB | None | 0 0
  1.  
  2. public class UserInfo {
  3.     static String username;
  4.     static String password;
  5.     static String account;
  6.     static String creditcard;
  7.     static String expdate;
  8.     static String address;
  9.     static String Email;
  10.    
  11.     public static void UserInfo(String u, String p, String a, String c, String e, String ad, String em) {
  12.         username=u;
  13.         password=p;
  14.         account=a;
  15.         creditcard=c;
  16.         expdate=e;
  17.         address=ad;
  18.         Email=em;
  19.     }
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement