Обсуждение:Poe

Материал из Поле цифровой дидактики
Версия от 13:11, 4 июня 2023; Patarakin (обсуждение | вклад)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)

Scratch_assistant

When green flag clicked:
forever
move (10) steps
turn clockwise (15) degrees
end

Snap! example

When green flag clicked:
make 100  clones of [myself v]  
wait () secs  
end 
repeat  
   move [ ]  steps
   if on edge, bounce  
end  
delete this clone

Пример бота Poe

Table

Name Description Code example
Division Flashcards A flashcard app to help students practice division facts up to 50.
when green flag clicked
set n to pick random 2 to 50
set m to pick random 2 to n
say What is 
say n
say ÷ 
say m
ask What is the answer? and wait
if <(n / m)> is a whole number
if <answer> = (n / m) then
say Correct!
else
say Incorrect. The answer is (n / m)
end
Addition Drills An addition drill app to help students practice basic addition facts up to 20.
when green flag clicked
set n1 to pick random 1 to 20
set n2 to pick random 1 to 20
say What is
say n1
say +
say n2
ask What is the answer?and wait
if<answer> = (n1 + n2) then
say Correct!
else
say Incorrect. The answer is (n1 + n2)
end
wait 1
if <(n1+n2)> > 50 then
stop [all v]
say Great job!
end