Question: 1. countLetter Write the method count Letter that takes a string param- eter, s, and a char parameter, c. Your method returns the number of

1. countLetter Write the method count Letter that takes a string param- eter, s, and a char parameter, c. Your method returns the number of times that c appears in the string s. You should account for both uppercase and lowercase versions of c. Examples countLetter( "abe", 'a") returns 1 countLetter( "Abcabc", 'a') returns 2 countLetter( "Abcabc, A') returns 2 countLetter( "Abcabe", 2) returns public static int countLettStrig s, l char c)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
