08/03/15 12:44:36 I6EvDZ3G
>>112の「計算式」はプログラムそのものを指してる様な希ガス
それはそうと>>108と>>109を合成してドクオが左右の壁にぶつかる様にしてみた
set display mode 640,480,16
set text font "MS ゴシック",128
set text opaque
wait key
y=200
x=300
do
if leftkey()=1 then x=x-5
if rightkey()=1 then x=x+5
set cursor x,y
if x<450 and x>50 then print " ('A`) "
if x=450 then print " ('A`|"
if x>450 then print " ('A|" : x=x-5
if x=50 then print "|'A`) "
if x<50 then print " |A`) " : x=x+5
wait 50
loop