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))
Numbers and figures are an essential part of our world, necessary for almost everything we do every day. As important…
APPROVED BY CLIENTS
Finding a professional expert in "partial differential equations" in the advanced level is difficult.
You can find this expert in "Assignmentexpert.com" with confidence.
Exceptional experts! I appreciate your help. God bless you!
Comments
Leave a comment