I'm doing a phone number conversion program.
I created a method to convert the letter to numbers, and a method to format the phone number(dashes after 3 and 6 numbers).
Both methods return a value.
I don't want to post the entire program, but the calling method in the main would look like
String conversion = Conversion(singleC); //singleC is every single character
String format = Reformat(characters); //characters is the input
So how do I print the final result that use the two methods above?
This is my first post..so sorry if I violate any rules...and for my grammar errors if there are any..Thanks!