day 5-5 python (짝수 더하기)
Instructions You are going to write a program that calculates the sum of all the even numbers from 1 to 100. Thus, the first even number would be 2 and the last one is 100: i.e. 2 + 4 + 6 + 8 +10 ... + 98 + 100 Important, there should only be 1 print statement in your console output. It should just print the final total and not every step of the calculation. 2 부터 100까지 짝수만 더하기 나의 코드 ## 짝수 더하기 to..
2023.02.27