0
Input a string as a name and print the initials of the name, using string functions.
For example, Input: Deepak Kumar Verma output: D K V Please, not using scanner class.
1 Réponse
+ 1
You can split the string on whitespaces which will result in an array. Then you can loop over the array and save the first letter of each word.
Or you can use a regular expression.