Guest User

Untitled

a guest
May 16th, 2018
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.16 KB | None | 0 0
  1. public TelephoneNumber(long full)
  2. { area = full.substring(0,2);
  3.   prefix = full.substring(3,5);
  4.   line = full.substring(6,9);
  5.   String fullString = full.toString();
Add Comment
Please, Sign In to add comment