Answer:
# Take in four positive integers
num1 = int(input("Enter the first number: "))
num2 = int(input("Enter the second number: "))
num3 = int(input("Enter the third number: "))
num4 = int(input("Enter the fourth number: "))
# Initialize the count of odd numbers
odd_count = 0
# Check each number for oddness
if num1 % 2 != 0:
odd_count += 1
if num2 % 2 != 0:
odd_count += 1
if num3 % 2 != 0:
odd_count += 1
if num4 % 2 != 0:
odd_count += 1
# Output the total count of odd numbers
print("The number of odd numbers is:", odd_count)
Step-by-step explanation:
Enter the first number: 1
Enter the second number: 2
Enter the third number: 3
Enter the fourth number: 4
The number of odd numbers is: 2