2020 04 07學習記錄

2021-10-23 03:45:28 字數 1237 閱讀 7455

2020.04.07學習記錄

#input函式的運用

name=input(「請輸入您的姓名:」)

id = input(「請輸入你的學號:」)

age = input(「請輸入你的年齡:」)

print(「您的姓名%s」

「\n你的學號%s」

「\n你的年齡%s」%(name,id,age))

#if函式的運用

age = int(input(「請輸入您的年齡」))

print("------判斷開始--------")

if age >=18:

print(「您已成年」)

print("------判斷結束------")

#else的運用

age = int(input(「請輸入您的年齡:」))

print("------判斷開始--------")

if age >=18:

print("\t您已成年")

else:

print(「您未成年」)

print("------判斷結束------")

#elif函式的使用

score = float(input(「請輸入您的成績」))

print("------判斷開始--------")

if score>=90 and score<100:

print(「您的成績為a」)

elif score>=70 and score<90 :

print(「您的評價為b」)

elif score>=60 and score<70 :

print(「您的評價為c」)

elif score>=0 and score<60 :

print(「您的評價為d」)

print("------判斷結束------")

#if巢狀語句的運用

mouth = int(input(「請輸入您的月份」))

seat_type = int(input(「請輸入您的艙型」))

if mouth>=5 and mouth<=10:

if seat_type==1:

print(「需要23432元」)

else:

print(「需要24254元」)

else:

if seat_type ==1:

print(「需要234元」)

else:

print(「需要242元」)

2020 0407知識總結

2d 平面空間的元素變形。變形屬性 transform transform的屬性值為功能函式。一 2d的功能函式 1 2d的位移 transform translate x,y transform translatex x軸移動的距離 transform translatey y軸移動的距離 2 2...

每日一題 2020 04 07

涉及bfs,我一開始還以為是最短路,人都傻了。不過自己的最短路還是不咋地 解題思路 還是給自己說一下,dist 再次遇到的不用處理,因為先遇到的距離就是短的 include include include include using namespace std const int n 10010 t...

mysql學習記錄 MySQL學習記錄 2

in 子查詢 select from student where id in 1,2 not in 不在其中 select from student where id not in 1,2 is null 是空 select from student where age is null is not...