136k views
5 votes
Python coding.............

Python coding.............-example-1
User Ganpaan
by
7.7k points

2 Answers

1 vote

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

User SCS
by
7.4k points
2 votes

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

User VDog
by
7.5k points