Question: Define a method that takes a two-dimensional array of type char and returns a value of type int. The method returns the number of uppercase

Define a method that takes a two-dimensional array of type char and returns a value of type int. The method returns the number of uppercase letters in the parameter array. The method's header is

public static int count(char[][] in)

Example:

char[][] a = { { 'a', 'B', '5'}, {'@', '3'}, {'U', 'v', '4', '3', '8', 'M'}, {'7'} };

int out = count(a); //out = 3

CODE IN JAVA!!!!

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!