Skip to content

Instantly share code, notes, and snippets.

@yassaa
Created November 7, 2014 12:26
Show Gist options
  • Select an option

  • Save yassaa/1983058aac9cbdb0c198 to your computer and use it in GitHub Desktop.

Select an option

Save yassaa/1983058aac9cbdb0c198 to your computer and use it in GitHub Desktop.
User
import java.util.Scanner;
public class Userinformation {
private String Name;
private String Email;
private long Phonenumber;
// if the number is not 8 characters long, the system will give an error message
//User information
public Userinformation(String Name, String Email, long Phonenumber){
this.Name = Name;
this.Email = Email;
this.Phonenumber = Phonenumber;
}
public String getName(){
return Name;
}
public String getEmail(){
return Email;
}
public long getPhonenumber(){
return Phonenumber;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment