/** * Processing Data with Loops */ public class oddSum { /** Write the method named oddSum(); * * Given a String str return the arithmetic sum of the odd-numbered digits '1'-'9' that appear in the string, ignoring all other characters. Return 0 if there are no digit characters in the string. * * * * You cannot use any of the classification method in the Character class. You must use the relational operators and simple logic to decide if a character is a digit. To convert a digit character to a binary number, simply * subtract the character '0'. * Examples: oddSum("aa1bc2d3") returns 4 (2 is even) oddSum("aa11b33") returns 8 oddSum("") returns 0 @param str the String search for digits @return the sum of the digits odd digits * / public int oddSum(String str) { // Complete the oddSum method here * * .. }

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter7: Characters, Strings, And The Stringbuilder
Section: Chapter Questions
Problem 12RQ
icon
Related questions
Question
/**
* Processing Data with Loops
*/
public class oddSum
{
/**
Write the method named oddSum();
*
*
Given a String str return the arithmetic sum
of the odd-numbered digits '1'-'9' that appear in the string,
ignoring all other characters. Return 0 if there
are no digit characters in the string.
*
*
*
*
You cannot use any of the classification method in
the Character class. You must use the relational operators
and simple logic to decide if a character is a digit.
To convert a digit character to a binary number, simply
*
subtract the character '0'.
*
Examples:
oddSum("aa1bc2d3") returns 4 (2 is even)
oddSum("aa11b33") returns 8
oddSum("") returns 0
@param str the String search for digits
@return the sum of the digits odd digits
* /
public int oddSum(String str)
{
// Complete the oddSum method here
*
*
..
}
Transcribed Image Text:/** * Processing Data with Loops */ public class oddSum { /** Write the method named oddSum(); * * Given a String str return the arithmetic sum of the odd-numbered digits '1'-'9' that appear in the string, ignoring all other characters. Return 0 if there are no digit characters in the string. * * * * You cannot use any of the classification method in the Character class. You must use the relational operators and simple logic to decide if a character is a digit. To convert a digit character to a binary number, simply * subtract the character '0'. * Examples: oddSum("aa1bc2d3") returns 4 (2 is even) oddSum("aa11b33") returns 8 oddSum("") returns 0 @param str the String search for digits @return the sum of the digits odd digits * / public int oddSum(String str) { // Complete the oddSum method here * * .. }
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Unreferenced Objects
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
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,