Question: : Given a specific number, consider all the numbers from 1 to given number and calculate how many of them are odd, even and multiples
: Given a specific number, consider all the numbers from 1 to given number and calculate how many of them are odd, even and multiples of 3. For instance: number = 9 then consider {1, 2, 3, 4, 5, 6, 7, 8, 9} count of even numbers = 4 // 2, 4, 6, 8 count of odd numbers = 5 // 1, 3, 5, 7, 9 count of multiples 3 = 3 // 3, 6, 9 note. You do not have to list all the numbers, you just need to count how many. For the problem above, create the pseudocode, trace table, java code, screenshot of output
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
