2015FALL 40423108 CPA 作業

2015 作業十一 40423108

以下為作業十一內容

利用 iframe 嵌入投影片:

作業一投影片

Vimeo 影片嵌入:

環境設定

W11 from Francis on Vimeo.

猜數字

W11-2 from Francis on Vimeo.

猜數字程式碼:

#coding: utf-8
# 猜數字遊戲
import random

x = int(input("請輸入下限的整數:"))
y = int(input("請輸入上限的整數:"))

標準答案 = random.randint(x,y)
print("標準答案:",標準答案)
PC猜的數字 = random.randint(x,y)
print("PC猜的數字:",PC猜的數字)
猜測次數 = 1
while 標準答案 != PC猜的數字:
    if 標準答案 < PC猜的數字:
        print("太大了再猜一次 :)加油")
        y = PC猜的數字-1
    else:
        print("太小了再猜一次 :)加油")
        x = PC猜的數字+1
    PC猜的數字= random.randint(x,y)
    print("PC猜的數字:",PC猜的數字)
    猜測次數 += 1

print("猜對了總共猜了", 猜測次數, "")

Comments