代码搜索:Notes

找到约 10,000 项符合「Notes」的源代码

代码结果 10,000
www.eeworm.com/read/317007/3583874

txt notes.txt

This program plays a game like Pong, but with extra moving obstacles that the ball can bounce off of added to the screen on mouse entrance and exit. It demonstrates the use of an array to keep track o
www.eeworm.com/read/317007/3583880

txt notes.txt

This program draws a bunch of basketballs on the screen so that we can watch them bounce randomly. Each click adds a ball to the display. Leaving the canvas makes the balls temporarily vanish. Movi
www.eeworm.com/read/317007/3583888

txt notes.txt

This program draws a bunch of basketballs on the screen so that by clicking we can watch them bounce randomly. It demonstrates the use of an array to keep track of a fixed number of objects.
www.eeworm.com/read/317007/3583936

txt notes.txt

This program creates clouds which create snow and sleet when the user clicks. It demonstrates the use of inheritance to create specialized clases which descend from a more general class.
www.eeworm.com/read/317007/3583949

txt notes.txt

This program creates clouds which create snow, sleet, tomatoes, and cows when the user clicks. It demonstrates the use of inheritance to create specialized clases which descend from a more general cl
www.eeworm.com/read/317007/3583963

txt notes.txt

This program creates clouds which create snow, sleet, and tomatoes when the user clicks. It demonstrates the use of inheritance to create specialized clases which descend from a more general class.
www.eeworm.com/read/317007/3583973

txt notes.txt

This program awards points whenever the mouse is clicked inside of the basket. It improves on SillyBasketBall by using the if statement to determine whether or not the user has scored.
www.eeworm.com/read/317007/3583978

txt notes.txt

This program awards points whenever the mouse is clicked. It demonstrates the use of several arithmetic expressions, but lacks the sophistication that conditional statements can provide.
www.eeworm.com/read/317007/3583981

txt notes.txt

This program allows the user to click on the ball and drag it around the screen. Releasing the mouse drops the ball. Points are awarded when the ball is placed in the basket. It demonstrates the use
www.eeworm.com/read/317007/3583998

txt notes.txt

This program plays a pathetic version of pong with no ball-paddle interaction. It demonstrates the use of ActiveObject to create independent moving objects.