Обсуждение:Poe: различия между версиями

Материал из Поле цифровой дидактики
(→‎Table: новая тема)
 
(не показано 5 промежуточных версий этого же участника)
Строка 27: Строка 27:


== Table ==
== Table ==
 
{| border=1
|Name|Description|Code example|
!Name
|Division Flashcards |A flashcard app to help students practice division facts up to 50.|when green flag clicked
!Description
!Code example
|-
|Division Flashcards  
|A flashcard app to help students practice division facts up to 50.
|
<scratchblocks>
when green flag clicked
set n to pick random 2 to 50
set n to pick random 2 to 50
set m to pick random 2 to n
set m to pick random 2 to n
Строка 43: Строка 50:
say Incorrect. The answer is (n / m)
say Incorrect. The answer is (n / m)
end
end
|Addition Drills|An addition drill app to help students practice basic addition facts up to 20.|when green flag clicked
</scratchblocks>
|-
|Addition Drills
|An addition drill app to help students practice basic addition facts up to 20.
|
<scratchblocks>
when green flag clicked
set n1 to pick random 1 to 20
set n1 to pick random 1 to 20
set n2 to pick random 1 to 20
set n2 to pick random 1 to 20
Строка 61: Строка 74:
say Great job!
say Great job!
end
end
</scratchblocks>
|}

Текущая версия на 13:11, 4 июня 2023

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