Skip to content

Instantly share code, notes, and snippets.

View DoctorKittens's full-sized avatar

DoctorKittens

View GitHub Profile
@DoctorKittens
DoctorKittens / Add
Last active November 28, 2017 22:29
Phone book, first try
import java.util.Scanner;
public class Add implements Comparable<Add>{
private String name;
private String lastName;
private int number;
public Add(String name, String lastName, int number) {
this.name = name;