ผังงาน

psudo code

start 

set tall=0,test=" "

input tall

if tall<=100  then

       text="short"

else  

       text="height"

endif

print text

stop

ตัวอย่างการโปรแกรม

tall=0
text=""
tall=int(input("type tall:"))
if tall<=100:
    text="short"
else:
    text="height"
print(text)
   
© ALLROUNDER