Question: Java: What does the following program do? What is its purpose / functionality? It does something very specific; describe what it is analyzing. public int
Java:
What does the following program do? What is its purpose / functionality? It does something very specific; describe what it is analyzing.
public int countU( String str )
{
int maxLength = str.length();
int countU = 0;
int asciiCode;
for(int i = 0; i < maxLength; i++) {
asciiCode = (int)str.charAt(i);
if( asciiCode >= 65 && asciiCode <= 90 ) {
countU++;
}
}
return countU;
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
