I have
String add_data[] = new String[6];
then I do
System.out.println("COMPANY NAME: ");
add_data[0] = scan.next();
I need to append a character to what to get from scan.next() & put that into add_data[0]. Please guide me how to accomplish this task.
Assuming
scanrefers to java.util.Scanner this can be accomplished easily: