Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

import java.util.Scanner; // Calculates the sum of odd digits of the input integer number // Example: number = 12345 Sum = 9 (1+3+5) // number

import java.util.Scanner;

// Calculates the sum of odd digits of the input integer number
// Example: number = 12345   Sum = 9 (1+3+5)
//          number = 248     Sum = 0
//          number = 65732098 Sum = 24 (5+7+3+9)


public class SumOfOddDigits
{
public static void main(String[] args)
{
String digits = "48596732 273457 13579 24680 3";    
 Scanner in = new Scanner(digits);

while (in.hasNextInt())
{
int num;
num = in.nextInt();

int sum = 0;
int digit;

//-----------Start below here. To do: approximate lines of code = 5
// Use a while loop. While num is greater than 0, use the modulus operator to strip off the next digit.
// Check if this digit is odd, if so add it to sum variable
// Finally, divide the num by 10 to throw away the current digit



// Only add digit if it is odd






//-----------------End here. Please do not remove this comment. Reminder: no changes outside the todo regions.
System.out.println("The sum is " + sum);
}
System.out.println("Expected:");
System.out.println("The sum is 24");
System.out.println("The sum is 22");
System.out.println("The sum is 25");
System.out.println("The sum is 0");
System.out.println("The sum is 3");
}
}

Step by Step Solution

3.45 Rating (152 Votes )

There are 3 Steps involved in it

Step: 1

import javautilScanner public class SumOfOddDigits public static void mainString args String ... blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Organic Chemistry structure and function

Authors: K. Peter C. Vollhardt, Neil E. Schore

6th edition

142920494X, 978-1429204941

More Books

Students also viewed these Programming questions

Question

Why is the efficient-market hypothesis being challenged?

Answered: 1 week ago

Question

Solve each equation. x 3 - 6x 2 = -8x

Answered: 1 week ago