2016-03-25 16:47:20 -07:00
# digi yoyo challenges
Coding challenges for the digi yoyo.
## Before we get started
2016-04-13 08:27:45 -07:00
Complete the following [guided tutorial ](/lessons/digi-yoyo/activity ), your code should look like this:
2016-03-25 16:47:20 -07:00
```blocks
let count = 0;
while (count < 10 ) {
basic.pause(100);
basic.showNumber(count);
count = count + 1;
basic.pause(20);
}
```
2017-09-07 13:42:08 -07:00
## Challenge 1
2016-03-25 16:47:20 -07:00
2018-11-09 15:36:46 -08:00
How about we create a counter that counts backwards from `10` to `1` ? Let's add a while loop that executes only when ``||variables:count||`` is greater than ` 0`.
2016-03-25 16:47:20 -07:00
```blocks
let count = 0;
while (count < 10 ) {
basic.pause(100);
basic.showNumber(count);
count = count + 1;
basic.pause(20);
}
while (count > 0) {
}
```
2017-09-07 13:42:08 -07:00
## Challenge 2
2016-03-25 16:47:20 -07:00
2018-11-09 15:36:46 -08:00
Inside of the while loop, let's add a ``||basic:pause||`` that waits for one seccond so that we have a pause between each number as it's counting down. Also, let's show ``||variables:count||` `!
2016-03-25 16:47:20 -07:00
```blocks
2018-11-09 15:36:46 -08:00
let count = 0;
2016-03-25 16:47:20 -07:00
while (count < 10 ) {
basic.pause(100);
basic.showNumber(count);
count = count + 1;
}
while (count > 0) {
basic.pause(100);
basic.showNumber(count);
}
```
* Run the code to see if it works as expected.
2017-09-07 13:42:08 -07:00
## Challenge 3
2016-03-25 16:47:20 -07:00
2018-11-09 15:36:46 -08:00
Now, we need ``||variables:count||`` to decrease by one after the @boardname@ has displayed the value of ``||variables:count||` `.
2016-03-25 16:47:20 -07:00
We can do this by adding this line:
```blocks
2016-03-30 15:54:19 -07:00
let count = 0;
count = count + (count - 1);
2016-03-25 16:47:20 -07:00
```