반응형
chapter 4 - 연산자
selfstudy 4-1
코드
## 전역 변수 선언 부분 ##
money, c50, c10, c5, c1 = 0,0,0,0,0
## 메인 코드 부분 ##
money=int(input("지폐로 교환할 돈은 얼마? "))
c50 = money // 50000
money %= 50000
c10 = money // 10000
money %= 10000
c5 = money // 5000
money %= 5000
c1 = money // 1000
money %= 1000
print("\n 50000원짜리 ==> %d장 " % c50)
print(" 10000원짜리 ==> %d장 " % c10)
print(" 5000원짜리 ==> %d장 " % c5)
print(" 1000원짜리 ==> %d장 "% c1)
print(" 지폐로 바꾸지 못한 돈 ==> %d원"% money)
selfstudy 4-2
코드
inValue=0
count=0
result=0
i=0
inValue=int(input("시프트할 숫자는? "))
count=int(input("출력할 횟수는? "))
for i in range(1, count+1) :
result = inValue << i
print("%d << %d = %d" % (inValue, i , result))
for i in range(1, count + 1) :
result = inValue >> i
print("%d >> %d = %d" % (inValue, i , result))
'IT' 카테고리의 다른 글
파이썬 for beginner 3판 – chapter 6 self study (0) | 2022.11.24 |
---|---|
파이썬 for beginner 3판 – chapter 5 self study (0) | 2022.11.24 |
파이썬 for beginner 3판 – chapter 3 self study (0) | 2022.11.23 |
gcc 설치 및 명령어 (1) | 2021.09.02 |
[WebShare] 웹쉐어 사용법 및 다운로드 (2) | 2021.07.12 |