Posts by Lucas Rocha • 21 points
1 post
-
2
votes1
answer32
viewsA: Program to show the amount of uppercase shows only the amount of lowercase
that line is wrong in your code if ( x[i] >= 'A' && x[i] >= 'Z' ) just change and put like this: if ( x[i] >= 'A' && x[i] <= 'Z' )…