Challenges 2020 – 05
Flower Challenge Draw a turtle image like a flower. You can use LitDev Extension as following sample. To fill an area can be used: ldshapes.addpolygon,… Leggi tutto »Challenges 2020 – 05
Flower Challenge Draw a turtle image like a flower. You can use LitDev Extension as following sample. To fill an area can be used: ldshapes.addpolygon,… Leggi tutto »Challenges 2020 – 05
Quesiti originali: https://studio.code.org/s/artist/
Quesiti originali: http://studio.code.org/s/20-hour
Quesiti originali: http://studio.code.org/s/20-hour
Quesiti originali: http://studio.code.org/s/20-hour
Challenge 1
1 2 3 4 5 |
array[1] = "YouTube" array[2] = "Programming" array[3] = "You" array[4] = "Professional" array[5] = "Life" |
Order this array in alphabetical order (A – Z) through algorithms. Challenge 2 Get the index of a value in an array.… Leggi tutto »Challenges 2019 – 04
Game Challenge Write a ‘snake’ game Graphics Challenges Write a program to draw a brightly coloured tropical fish. Write a program to draw a lighthouse… Leggi tutto »Challenge 2019-03
Graphics Challenge First write a program to draw a line on the GraphicsWindow following the mouse. Below is a starter:
1 2 3 4 5 6 7 8 9 10 |
GraphicsWindow.Show() xLast=GraphicsWindow.MouseX yLast=GraphicsWindow.MouseY While("True") x=GraphicsWindow.MouseX y=GraphicsWindow.MouseY GraphicsWindow.DrawLine(x,y,xLast,yLast) xLast=x yLast=y EndWhile |
Then make the program… Leggi tutto »Challenge 2019-02
Graphics Challenge Draw a picture of a space ship Give it a cool space starry background Draw the phases of the moon Turtle Challenge Use… Leggi tutto »Challenge 2019-01
Maths Challenge Write a program that outputs all possibilities to put + or – or nothing between the numbers 1,2,…,9 (in this order) such that the result is 100.… Leggi tutto »Challenge 2018-12