[Solved] On the subject of delimiters
Assuming you’re talking about java.util.Scanner, the default delimiter is whitespace. Therefore, if you enter “14 45 20 16” on the command line and then pressed the enter key, the nextInt or next call on the scanner instance would return 14. If you then call nextInt on scanner again, you get no prompting; that would immediately … Read more