Solved

Programming Write a Static Method Named CountEvenDigits That Accepts an Integer

Question 7

Essay

Programming
Write a static method named countEvenDigits that accepts an integer as its parameter and returns the number of even-valued digits in that number. An even-valued digit is either 0, 2, 4, 6, or 8.
For example, the number 8546587 has four even digits (the two 8s, the 4, and the 6),
so the call countEvenDigits(8346387) should return 4.
You may assume that the value passed to your method is non-negative.

Correct Answer:

verifed

Verified

(two solutions shown)
public static int ...

View Answer

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions