Advertisement
DerioFT

1065.py

Sep 24th, 2021
744
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. total = 0
  2.  
  3. for data in range(5):
  4.     number = float(input())
  5.  
  6.     if number % 2 == 0:
  7.         total += 1
  8.  
  9. print(total,"valores pares")
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement