if條件分支

2021-08-16 01:26:35 字數 1326 閱讀 5213

username=input(「請輸入你的名字:」)

password=input(「請輸入你的密碼:」)

if username==」admin」 and password==」123456」:

print(「歡迎使用本系統!\n中國移動歡迎您!\nvip」)

else:

print(「賬號或密碼錯誤!」)

name=input(「name=」)

import getpass

password=getpass.getpass(「password=」)

if name==」admin」 and password==」123」:

print(「welcome!」)

else:

print(「error!」)

value = float(input(「請輸入長度: 「))

unit = input(「請輸入單位: 「)

if unit == 「in」 or unit == 「英吋」:

print(「%f英吋 =%f厘公尺」 % (value, value * 2.54))

elif unit == 「cm」 or unit == 「厘公尺」:

print(「%f厘公尺 = %f英吋」 % (value, value / 2.54))

else:

print(「請輸入有效的單位」)

import math

a=float(input(「a=」))

b=float(input(「b=」))

c=float(input(「c=」))

if a+b>c and b+c>a and a+c>b:

print(「三角形的周長是:%.2f」%(a+b+c))

p=(a+b+c)/2

s=math.sqrt(p*(p-a)(p-b)(p-c))

print(「三角形的面積是:%.2f」%s)

else:

print(「不構成三角形!」)

from random import randint

x=randint(1,6)

if x==1:

print(x,」學狗叫」)

elif x==2:

print(x,」跑兩圈」)

elif x==3:

print(x,」真心話冒險」)

elif x==4:

print(x,」唱支歌」)

elif x==5:

print(x,」跳個舞」)

else:

print(x,」請大家吃飯」)

Pug條件 分支條件

var friends 10 case friends when 0p 您沒有朋友 when 1p 您有乙個朋友 default p 您有 個朋友 等價於 您有 10 個朋友 另一種塊展開的寫法 var friends 1 case friends when 0 p 您沒有朋友 when 1 p 您...

條件分支 11 13

條件分支 lc 有兩種通用的條件分支形式。lif else 根據條件選擇乙個分支執行的一般方法,它線性的檢查條件並檢查條件為 true 當第乙個條件為 true 時不在檢查後面的條件。l switch 因為 switch 可以使用 轉移表 jump table 所以它選對分支更有效。if 語句 l通...

條件分支結構

一 條件分支結構 if else if分支語句 1 if判斷 if 條件語句 2 if else分支 if 條件語句 else 3 if else if分支 if 條件語句1 else if 條件語句2 elseelse else switch分支 switch a 注意 1 值不能重複,值的型別和...