8 lines
240 B
Markdown
8 lines
240 B
Markdown
jj
|
|
### Algorithm Notes For Problem 1
|
|
|
|
Loop through each number below 999 including 999.
|
|
For each number if the number%3 or the number%5 equals zero add the number to a list
|
|
|
|
Upon completion of loop, sum up the numbers in the list together.
|