/** * Processing Data with Loops in Java. */ public class countChar { / ** Write the method named countChar() * You are given a String str, and a char c. Return the number of times that c appears inside str, but ignore case. * * Don't use the classification methods in the Character class. Use plain if statements, remembering that if c is lowercase, you make it uppercase by subtracting the expression ('a' - 'A'). If it is uppercase, you make it lowercase by adding the expression ('a' - 'A'). * * Examples: countChar("Abcdefg", 'a') returns 1 countChar("xxXx", 'x') returns 4 countChar("", 'q') returns 0 II II @param str the String to search through @param c the char to count (not case sensitive) @return the count of c in str * / public static int countChar(String str, char c) { // Complete the countChar method here * } }

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter2: Using Data
Section: Chapter Questions
Problem 14RQ
icon
Related questions
Question

With Java, use single, two-way and multi-way if statements to write different kinds of loops that process Strings.

/**
* Processing Data with Loops in Java.
*/
public class countChar
{
/ **
Write the method named countChar()
*
You are given a String str, and a char c.
Return the number of times that c appears
inside str, but ignore case.
*
*
Don't use the classification methods
in the Character class. Use plain if statements,
remembering that if c is lowercase, you make it uppercase
by subtracting the expression ('a' - 'A'). If
it is uppercase, you make it lowercase by
adding the expression ('a' - 'A').
*
*
Examples:
countChar("Abcdefg", 'a') returns 1
countChar("xxXx", 'x') returns 4
countChar("", 'q') returns 0
II II
@param str the String to search through
@param c the char to count (not case sensitive)
@return the count of c in str
* /
public static int countChar(String str, char c)
{
// Complete the countChar method here
*
}
}
Transcribed Image Text:/** * Processing Data with Loops in Java. */ public class countChar { / ** Write the method named countChar() * You are given a String str, and a char c. Return the number of times that c appears inside str, but ignore case. * * Don't use the classification methods in the Character class. Use plain if statements, remembering that if c is lowercase, you make it uppercase by subtracting the expression ('a' - 'A'). If it is uppercase, you make it lowercase by adding the expression ('a' - 'A'). * * Examples: countChar("Abcdefg", 'a') returns 1 countChar("xxXx", 'x') returns 4 countChar("", 'q') returns 0 II II @param str the String to search through @param c the char to count (not case sensitive) @return the count of c in str * / public static int countChar(String str, char c) { // Complete the countChar method here * } }
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Files and Directory
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT