Advertisements
Advertisements
Question
Define a class to declare a character array of size ten, accept the character into the array and perform the following:
- Count the number of uppercase letters in the array and print.
- Count the number of vowels in the array and print.
Answer in Brief
Solution
public class CountUpperLower
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
int uppercase = 0;
int vowels = 0;
char chh,ch;
System.out.println("Input some characters... ");
char[10] a = sc.next().toCharArray();
for(int i=0;i<a.length;i++)
{
chh=a[i];
System.out.print(a[i]);
if(chh >='A' && chh <='Z')
uppercase++;
ch=Character.toUpperCase(chh);
if (ch='A' || ch-'E' || ch-'I' || ch='O' || ch='U')
vowels++;
}
System.out.println("Count of uppercase letters:" + uppercase);
System.out.println("Count of vowels:"+ vowels);
}
}
shaalaa.com
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
What is the value stored in variable res given below?
double res = Math.pow (“345”.indexOf(‘5’), 3);
Identify the correct array declaration statement.
Define a class to declare an integer array of size n and accept the elements into the array. Search for an element input by the user using the linear search technique, display the element if it is found, otherwise display the message “NO SUCH ELEMENT".
Define a class to declare an array of size 20 of the double datatype, accept the elements into the array and perform the following:
- Calculate and print the sum of all the elements.
- Calculate and print the highest value of the array.