Public Int NumeroMayusculas

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

public int numeroMayusculas(String texto) { int contador=0; for(int i=0;i<texto.length()-1;i++) { if(Character.isUpperCase(texto.

charAt(i))==true) { contador++; } } return contador; }

You might also like