pclogo作品
㈠ 請問用pclogo畫這個圖怎麼畫
你好,這個不應該用pclogo畫,可以畫出來,大概要幾天吧,這個圖片不是用pclogo畫出來的
㈡ PCLOGO下載
http://www.cr173.com/soft/28719.html
㈢ 求幾個PClogo的復雜圖形,急急!!!13日之前答的+30
repeat 4[fd 100 rt 90] fd 100 rt 30 repeat 3[fd 100 rt 120] lt 30 bk 100 rt 90 fd 40 lt 90 repeat 2[fd 60 rt 90 fd 20 rt 90]
是房子。
然後。
repeat 36[repeat 360[fd 1 rt 1]rt 10]
挺好的東西。
呃。 這幾個可以了吧。
也怪難的。
㈣ PC LOGO是什麼
就是你電腦的牌子的那個標志,另外就是你的電腦啟動後第一個看到的畫面,也是電腦品牌的標志,那個標志就是logo
㈤ PCLogoforWindows是什麼東東
下載地址:http://fuxiao.ccnu.e.cn/hsfx/Soft/ShowSoft.asp?SoftID=86 LOGO語言是一種早期的編程語言,也是一種與自然語言非常內接近的編程語言,它通容過「繪圖」的方式來學習編程,對初學者特別是兒童進行寓教於樂的教學方式。LOGO語言創始於1968年,是美國國家科學基金會所資助的一項專案研究,在麻省理工學院人工智慧研究室完成。 LOGO源自西臘文,原意即為思想,是由一名叫佩伯特的心理學家在從事兒童學習的研究中,發現一些與他的想法相反的教學方法,並在一個假日中出外散步時,偶然間看到一個像海龜的機械裝置觸發靈感,於是利用他廣博的知識及聰明的才智而最終完成了LOGO語言的設計。 PS:個人認為語言已經過期了
㈥ 跪求64位pclogo
目前,暫無pcLOGO是支持win 7 64位的。哎,同是天涯淪落人啊(我家就是win7 64位的)。
㈦ pclogo畫圖
to star5 :a
local "b
make "b (sin 36)/(sin 126)*:a
pu fd :a rt 162 pd
repeat 5[fd :b lt 72 fd :b rt 144]
lt 162 pu bk :a pd fill
end
to star10 :a
local "b
make "b (sin 18)/(sin 144)*:a
pu fd :a rt 162 pd
repeat 10[fd :b lt 108 fd :b rt 144]
lt 162 pu bk :a pd fill
end
to huatu
setpc 12
cs pu fd 100 setx xcor-200
star10 30 pu setx xcor+80 repeat 4[star5 30 pu setx xcor+80] rt 180
star10 30 pu sety ycor-80 repeat 2[star5 30 pu sety ycor-80]
star10 30 pu setx xcor-80 repeat 4[star5 30 pu setx xcor-80] rt 180
star10 30 pu sety ycor+80 repeat 2[star5 30 pu sety ycor+80]
pu setx xcor+200 sety ycor-120
setpc 14
pd stampoval 178 96 fill
end
最後運行huatu,即可畫出以上圖形。
㈧ 求PC Logo 國慶節主題作品! 要帶程序、圖片。
追答
追問
現成的我也會
㈨ pclogo語言怎麼畫這幾個圖 急 快快快謝謝好心人(第一個不是)
repeat 6[repeat 3[fd 50 rt 120]rt 60]
repeat 8[repeat 8[fd 20 rt 45]rt 45]
repeat 10[repeat 5[fd 30 rt 72]rt 36]
repeat 5[repeat 6[fd 30 rt 60]rt 72]
repeat 4[repeat 2[fd 40 rt 90 fd 20 rt 90]rt 90]
repeat 8[fd 30 repeat 3[fd 20 rt 120]bk 30 rt 45]
repeat 6[fd 20 repeat 4[fd 20 rt 90]lt 60]
repeat 8[repeat 4[fd 30 rt 90]fd 40 rt 45]
㈩ pclogo有哪些命令
詳細的:
fd 前進
bk 後退
lt 左轉
rt 右轉
clean 清除但海龜不回原位
cs 全屏清除
draw pclogo初始化
pu 提筆
pe 橡皮擦
pd 落筆,停止橡皮擦
repeat x[xxx] 重復命令
tt [] 在括弧中間添字,可以把字畫到圖形窗口
print [] 可以把括弧里的字畫到命令框
setx 可以移海龜到x位
sety 可以移海龜到y位
setxy [] 可以移海龜到xy線上
if……then……條件
or 加在if後面,要有兩個條件,只要有一個可以就執行then後面的東西
and 加在if後面,要有兩個條件,兩個條件都達到了,才執行then後面的東西