import turtle
long
=100
jd=90
# forward ----》 fd left-----》lt right-----》rt
red =
'blue'
turtle.color(red)
turtle.forward(
long
)turtle.left(jd)
turtle.forward(
long
)turtle.left(jd)
turtle.forward(
long
)turtle.left(jd)
turtle.forward(
long
)turtle.left(jd)
turtle.done(
)# 讓電腦問我們叫什麼名
mz=input
('你叫什麼名字'
)print((
"你好"
+mz)
*1000
)# 打招呼
# in 裡面 put 放 input
# dengji = input("你圍棋等級多少?")
# print(dengji)
a ='23'
b =5
print
(a*b)
# 數字+數字 : 數**算
# 字串+字串 :連線文字
# 字串+數字:太難了,報錯了
# 數字*數字: 數**算
# 字串*字串 : 太難了,報錯
# 數字*字串:複製字串多少遍
字串和字串函式
字元輸入輸出 getchar putchar ch getchar putchar ch 字串函式 字串輸入 建立儲存空間 接受字串輸入首先需要建立乙個空間來存放輸入的字串。char name scanf s name 上述的用法可能會導致程式異常終止。使用字串陣列 可以避免上述問題 char na...
字串和字串陣列
字串陣列 include int main int argc,const char ar printf name1 s n name1 name1 zhangsan 部分初始化中,沒有被初始化的元素預設是0,0 對應的ascii值是 0 char name2 9 printf name2 s n n...
字串和字串函式
1.字串字面量 字串常量 用雙引號括起來的內容稱為字串字面量,也叫字串常量。字串常量屬於靜態儲存類別,這說明如果在函式中使用字串常量,該字串只會被儲存一次,在整個程式的生命期內存在,計時函式被呼叫多次。用雙引號括起來的內容被視為指向該字串儲存位置的指標。hello 中的 hello 類似於乙個陣列名...