單向選擇程式語法 :
#單向選擇程式語法 :
if 條件判斷 :
條件成立的敘述
#程式範例 :
if score >= 60:
print('你及格了!')
用相同的概念我們來試做下面這一題,
大家可以把當成練習題來寫,
先看看輸出自己再去寫輸入喔!!
#output
請輸入你的成績?60
很好,繼續加油
#input
score = int(input('請輸入你的成績?'))
if score >= 60:
print('很好,繼續加油')
#雙向選擇程式語法
if 條件判斷 :
#條件成立的敘述
else :
條件不成立的敘述
#程式範例(滿1000打9折)
if cost >= 1000:
print(cost*0.9)
else:
print(cost)
再讓我們來看一個練習題:
#output
請輸入一個整數? 3
3 是奇數
#input
num = int(input('請輸入一個整數? '))
if num%2==0:
print(num,'是偶數')
else:
print(num,'是奇數')
#output
請輸入a邊長? 3
請輸入b邊長? 4
請輸入c邊長? 5
可以構成三角形
#input
a = int(input('請輸入a邊長? '))
b = int(input('請輸入b邊長? '))
c = int(input('請輸入c邊長? '))
if (a<b+c)and(b<a+c)and(c<a+b):
print('可以構成三角形')
else:
print('不能構成三角形')
今天就先幫大家介紹單向、雙向選擇的概念,
明天則會介紹多向選擇跟條件判斷與運算子「in」喔!!
大家一起加油吧!!