Vai al contenuto

Challenge 2015-12

Small Challenges

  1. Use the Turtle to follow your mouse.
  2. Write a program to draw a tree in the GraphicsWindow.
  3. Write a program to input and sum 5 numbers input by a user.
  4. Write a program to spell check the words in a sentense (use the Dictionary object).
  5. Write a program to play a few lines from your national anthem (use the Sound.PlayMusic method).

Maths Challenges

Project Euler: We had some of these challenges several years ago, but here are the first 5 again.
The full set (some very hard) can be found https://projecteuler.net/archives.

  1. Multiples of 3 and 5
    If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9.
    The sum of these multiples is 23.
    Find the sum of all the multiples of 3 or 5 below 1000.
  2. Even Fibonacci numbers
    Each new term in the Fibonacci sequence is generated by adding the previous two terms.
    By starting with 1 and 2, the first 10 terms will be: 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, …
    By considering the terms in the Fibonacci sequence whose values do not exceed four million, find the sum of the even-valued terms.
  3. Largest prime factor
    The prime factors of 13195 are 5, 7, 13 and 29.
    What is the largest prime factor of the number 600851475143 ?
  4. Largest palindrome product
    A palindromic number reads the same both ways.
    The largest palindrome made from the product of two 2-digit numbers is 9009 = 91 × 99.
    Find the largest palindrome made from the product of two 3-digit numbers.
  5. Smallest multiple
    2520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder.
    What is the smallest positive number that is divisible with no remainder “evenly divisible” by all of the numbers from 1 to 20?

Community Suggestion

By JetFire3201

Could we do a stickman running animation challenge?
Suggestion – Create an animated stickman that can run and jump with animated limbs reacting to key presses.

By Zock77

  1. Advanced Artificial Intelligence (AI)
    This is a facinating, but pretty tough challenge by Zock77.
    Check this out!  It is so cool! https://www.youtube.com/watch?v=qv6UVOQ0F44
    Suggestion – Perhaps create a simple Artificial Neural Net (ANN) program that can be trained to a simple task like approximating an equation curve.
  2. More Challenges
    1. Find the square root without using Math.SquareRoot (or any Math object methods if you can).
    2. Draw an ellipse using lines. (easy)
      Or for something more challenging: Make a filled ellipse without using ellipse methods.
    3. Write a program to find the GCF (Greatest Common Factor) of two numbers.

By Jibba Jabba

We have a whole set of progressive graphical challenges by Jibba Jabba.
Complete these and you will be right up there!
Use a Main loop for these and try nuzzling them into game loop structure.

  1. Basic Motion
    1. Make a square shape move from left to right of screen at a constant speed.
    2. Using arrays, place 2 more shapes on top of this shape and have them move in tandem.
    3. Make a circular shape move from the top to bottom of the GW at a constant speed.
    4. Now make this shape move on the same path from a standing start under the influence of gravity
    5. Now add friction/drag to this.
    6. Make a shape move horizontally across the screen bouncing off the edges with constant speed.
    7. Make a shape bounce from top to bottom from a standing start under the influence of gravity.
    8. Now add friction to this. Eventually the shape should stop.
    9. Make a shape move randomly all over the screen at a constant speed.
    10. Maybe apply some acceleration to this.
    11. Make a shape move in a circular path around a stationary shape placed in the centre.
    12. Add a satellite to this orbiting body.
    13. Have a go at changing the orbit to an elliptical path
    14. Add a continuous random barrage of asteroids that respond to any collisions.
    15. For advanced collision model some random balls colliding into each other.
  2. Make a step up game where a ball bounces up a set of steps. User can move the ball left and right.
  3. Make a calculator.  For a nice GUI check out Nonki’s website.
  4. Make some interesting Backgrounds. There was a recent blog on this by Nonki.
  5. Also make some interesting gradient backgrounds, can use RGB, Random or constant fills for this. The backgrounds don’t have to be full window. If you make them extensible they can become part of your own code library.

Lascia un commento

Il tuo indirizzo email non sarà pubblicato. I campi obbligatori sono contrassegnati *

Questo sito usa Akismet per ridurre lo spam. Scopri come i tuoi dati vengono elaborati.