Give an array of integers representing measurements in inches, write a program to calculate the total of measurement in feet ignore the measurement those who are less than a feet (e.g10)
1
Expert's answer
2021-08-29T00:57:52-0400
def findTotalFeet(n,numbers):
total = 0
for i in numbers:
total += i//12
return total
n = int(input())
numbers = list(map(int, input().split()))
print(findTotalFeet(n,numbers))
Comments
Leave a comment