Answers for "sum of multiples of 5 from 1 to 100"

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
0

sum of multiples of 5 from 1 to 100

total = 0

for i in range(1, 100):
    if i % 3 == 0:
        total = total + i
print(total)

total1 = 0
for i in range(1, 100):
    if i % 5 == 0:
        total1 = total1 + i
print(total1)
Posted by: Guest on February-13-2022
-1

Sum of all the multiples of 3 or 5

const findSum = n => {
  let countArr = []
  
  for(let i = 0; i <= n; i++) if(i % 3 === 0 || i % 5 === 0) countArr.push(i) 
  return countArr.reduce((acc , curr) => acc + curr)
}
console.log(findSum(5))
Posted by: Guest on June-18-2020

Code answers related to "sum of multiples of 5 from 1 to 100"

Python Answers by Framework

Browse Popular Code Answers by Language