Page 10 - 컴퓨팅 사고와 함께하는 파이썬기초부터 인공지능 응용까지 도서 미리보기
P. 10

연습문제                         CHAPTER 6? 커피 자동 주문기  133

1.	 다음 프로그램의 수행 결과를 보이시오. 난이도 ★

    (1) a = 10
             b=2
             b += 2
             print(a%b + 1)
             print(a//b)
             a /= 2
             print(2**a/b+2)

    (2) a = 6
             if not (a % 2) and a % 4 :
                 print("2의 배수")
             else:
                   print("4의 배수도 됨.")

    (3) a=10
             b=3
             print(a%b)
             print(a//b)
             print(a/4+b*a)

    (4) w=3
             x=2
             y=4
             print(w > y)
             y -= 2
             print(y > 2)

    (5) x=125.302
             print("[%7.1f]" % x)
             y = int(x)
             print("[%7d]" % y)

    (6) w = 30
             w >>= 3
             print(w)
             x=3
             x <<= w
             print(x)
   5   6   7   8   9   10   11   12   13   14   15