일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- element 조회
- 백준 알고리즘
- xss game 풀이
- 조건문
- window
- python
- xss game
- 사칙연산
- 포인터
- 백준 파이썬
- document
- 함수
- 배열
- burp suite
- suninatas 풀이
- Pwndbg
- 김성엽 대표님
- blind sql injection
- sql injection
- property
- github
- 자바스크립트
- lord of sql injection
- IF문
- jQuery
- 객체
- 파이썬
- object
- htmlspecialchars
- 메소드
Archives
- Today
- Total
목록홀수와 짝수의 합 (1)
power-girl0-0
While문을 이용하여 홀,짝구하기
조건 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)) 결과
언어/Python
2020. 9. 22. 18:59