일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- window
- object
- 조건문
- 메소드
- 백준 알고리즘
- 배열
- 김성엽 대표님
- 자바스크립트
- 포인터
- lord of sql injection
- sql injection
- 백준 파이썬
- 사칙연산
- jQuery
- python
- blind sql injection
- IF문
- 객체
- burp suite
- xss game
- suninatas 풀이
- 함수
- htmlspecialchars
- property
- github
- Pwndbg
- document
- xss game 풀이
- element 조회
- 파이썬
Archives
- Today
- Total
power-girl0-0
While문을 이용하여 홀,짝구하기 본문
728x90
조건
1. 리스트자료형 안에 10개의 값을 입력받아오기
2. 받아온 값을 홀 수와 짝 수로 비교하고 홀수와 짝수의 합을 구하여 출력하기
소스
num = []
b = 0
c = 0
couple = 0
solo = 0
while True:
print("임의의 수 입력 ==> ")
a = input()
num.append(a)
print(num)
b = b + 1
if (b >= 10):
break
while c < 10:
ga = int(num.pop())
if(ga %2) != 0:
solo = solo + ga
c = c + 1
else:
couple = couple + ga
c = c + 1
print("짝수 합 : %d, 홀수 합 : %d" %(couple,solo))
결과
728x90
'언어 > Python' 카테고리의 다른 글
함수 실습 (0) | 2020.10.06 |
---|---|
function (0) | 2020.10.06 |
While문을 이용한 구구단 (0) | 2020.09.22 |
if실습문제 (0) | 2020.09.22 |
변수 규칙 / 자료형 /참과 거짓 (0) | 2020.09.15 |
Comments