Write a program that uses a while loop to enable the user to enter any number of positive integers. The loop should end when a sentinel value of 0 (zero) is entered. The program should then report the sum of the even integers and the sum of the odd integers.   This must be written in Python. I have most of it figured out, I just don't know how to add an accumulator for the odd and even numbers. I have attached what I have so far below. Thank you! def main(): TOTAL = 0 print('This program calculates all odd and even positive numbers entered') num = int(input('Enter a positive number or 0 to quit: ')) while num != 0: if num % 2 == 0: print(f'This {num} is even') else: print(f'This {num} is odd') num = int(input('Enter a positive number or 0 to quit: ')) total_even = num % 2 == 0 total_odd = num % 2 != 0 total_even_num = total_even + num total_odd_num = total_odd + num print(f'Your total of even number is {total_even_num}') print(f'Your total of odd numbers is {total_odd_num}') main ()

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Write a program that uses a while loop to enable the user to enter any number of positive integers. The loop should end when a sentinel value of 0 (zero) is entered. The program should then report the sum of the even integers and the sum of the odd integers.

 

This must be written in Python. I have most of it figured out, I just don't know how to add an accumulator for the odd and even numbers. I have attached what I have so far below. Thank you!

def main():
TOTAL = 0
print('This program calculates all odd and even positive numbers entered')
num = int(input('Enter a positive number or 0 to quit: '))
while num != 0:
if num % 2 == 0:
print(f'This {num} is even')
else:
print(f'This {num} is odd')
num = int(input('Enter a positive number or 0 to quit: '))
total_even = num % 2 == 0
total_odd = num % 2 != 0
total_even_num = total_even + num
total_odd_num = total_odd + num
print(f'Your total of even number is {total_even_num}')
print(f'Your total of odd numbers is {total_odd_num}')

main ()

 

Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education