Posts by Isaque_Chaves • 11 points
1 post
-
1
votes2
answers3290
viewsA: Capitalize the first letter of each word
Thus it accepts only a compound word or phrase public class CamelCaseConverter { public Object converter(String nome) { char[] palavras = nome.toCharArray(); for(int i = 1; i < palavras.length;…