“Summe von Multiples von 5 von 1 bis 100” Code-Antworten

Summe aller Vielfachen von 3 und 5 unter 100

c = list(range(1,100))

total = 0

for i in (c):
    if i % 3 == 0 or i % 5 == 0:
      total += i
print (total)
Dizzy Duck

Summe von Multiples von 5 von 1 bis 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)
Excited Elk

Summe aller Vielfachen von 3 oder 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))
kouqhar

Ähnliche Antworten wie “Summe von Multiples von 5 von 1 bis 100”

Fragen ähnlich wie “Summe von Multiples von 5 von 1 bis 100”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen