Complete method called characterCount below so that it returns the number of times the character ch appears in the string s.
public int characterCount(String s, char ch)
{
}
I know that I have to use a for loop and use s.length() as a stopping point. Other than that, I'm stuck...