Answers for "find the sum of all multiples of 3 or 5 between 100 and 400 inclusive"

1

sum of all multiples of 3 and 5 below 100

c = list(range(1,100))

total = 0

for i in (c):
    if i % 3 == 0 or i % 5 == 0:
      total += i
print (total)
Posted by: Guest on September-11-2021

Code answers related to "find the sum of all multiples of 3 or 5 between 100 and 400 inclusive"

Browse Popular Code Answers by Language