Обсуждение:Poe: различия между версиями
Материал из Поле цифровой дидактики
Patarakin (обсуждение | вклад) (→Пример бота Poe: новая тема) |
Patarakin (обсуждение | вклад) |
||
(не показано 8 промежуточных версий этого же участника) | |||
Строка 12: | Строка 12: | ||
<scratchblocks > | <scratchblocks > | ||
When green flag clicked: | When green flag clicked: | ||
make | make 100 clones of [myself v] | ||
wait | wait () secs | ||
end | end | ||
repeat | repeat | ||
Строка 26: | Строка 26: | ||
* https://poe.com/06062023assist | * https://poe.com/06062023assist | ||
{ | == Table == | ||
| | {| border=1 | ||
| | !Name | ||
| | !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 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 | |||
</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 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 | |||
</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 |