Multiples of 3 and 5
Problem 1
If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23. Find the sum of all the multiples of 3 or 5 below 1000.3 ve 5 in katları
Soru 1
10 dan küçük olmanın yanında bir de 3 ve 5 e bölünebilen bütün doğal sayıların bir listesini çıkarırsak 3, 5 ve 9 elde ederiz. Bunların toplamı ise 23 tür. 3 or 5 e bölünebilen ve 1000 den küçük olan doğal sayıların toplamını bulunuz.
Python Kodu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sum = 0 | |
for x in range(999, 1, -1): | |
if x % 5 == 0 or x % 3 == 0: | |
print(x) | |
sum += x | |
print(sum) |