mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-27 23:11:09 +00:00
Correction: File solv3.py
I have remove some semicolons. line 11, 12 and 42
This commit is contained in:
parent
567f2adab8
commit
a5c954ff6e
|
@ -8,8 +8,8 @@ Find the sum of all the multiples of 3 or 5 below N.
|
|||
This solution is based on the pattern that the successive numbers in the series follow: 0+3,+2,+1,+3,+1,+2,+3.
|
||||
'''
|
||||
n = int(raw_input().strip())
|
||||
sum=0;
|
||||
num=0;
|
||||
sum=0
|
||||
num=0
|
||||
while(1):
|
||||
num+=3
|
||||
if(num>=n):
|
||||
|
@ -39,4 +39,4 @@ while(1):
|
|||
if(num>=n):
|
||||
break
|
||||
sum+=num
|
||||
print sum;
|
||||
print sum
|
||||
|
|
Loading…
Reference in New Issue
Block a user