© 2007 Ray S. Babcock Tracks Game is played on a (nxn) set of squares. There are three possible moves (labeled A,B,C). Players alternate making a move.

Slides:



Advertisements
Similar presentations
Java Programming Session 2. Objectives To design a range of different blocks To create the code for these blocks To test that each block rotates correctly.
Advertisements

Bridg-it by David Gale.
Math and Card Games By: Candace DiBiano.
Game Procedures Who does what, where, when, and how?
A Case Study  Some Advice on How to Go about Solving Problems in Prolog  A Program to Play Connect-4 Game.
Simeon Judah Reuben Ephraim Manasseh East Manasseh Asher Naphtali Issachar Zebulun Gad Dan Benjamin Edom Moab Ammon Aram R ECLAIM THE P ROMISED L AND BLUE.
Tic Tac Toe Game Design Using OOP
Microsoft® Small Basic Advanced Games Estimated time to complete this lesson: 1 hour.
PLANNING THE TIC TAC TOE GAME BY NEEL DAVE. TIC TAC TOE INSTRUCTIONS Tic Tac Toe Instructions The basic concept of Tic Tac Toe 1.This is a game for two.
Jeopardy Start Final Jeopardy Question Plane Figures Similar/ Congruent Space Figures Perimeter/ Area Figures
Place captured red pieces here Place captured yellow pieces here To use as Kings Rules New Game Exit Left mouse click on piece – drag to desired location.
For the ultimate in entertainment, play with 2 or more people, individually or as a team Players alternate turns Each player picks an “answer” and must.
Centinel tournament ● A deck: the numbers in random order ● A game lasts until no numbers are left in deck ● A game is played like this (first player.
Prime Geometry Primes are a topic of enduring interest. “God gave us primes.” “Describe pictures to alien civilizations using N bits where N is the cube.
BINGO! Topic Create Your Game Card You will need a blank piece of paper.
Lecture 4 1) RECURSION 2)BACKTRACKING 3)LOOK AHEAD.
Choose level of difficulty
DRUG & ALCOHOL AWARENESS The Board Game. Rules: Each player has a stack of blue and green cards. If they land on a PINK or GREEN square they must read.
You can type your own categories and points values in this game board. Type your questions and answers in the slides we’ve provided. When you’re in slide.
Matthew Marcon Project 19 1/10/12
GEOMETRY JEOPARDY SEVENTH GRADE EDITION Click here to Play.
Creating pong in scratch Learning objectives: To learn how to program Sensing via colour and sprite proximity O:\ICT\ks3\scratch\scratch Exercises\Creating.
Indian Institute of Technology Hyderabad SOS - The Game A Project by Paritosh J Chandran Prakhar Bharadwaj Ganesh Mahidhar Nagarjun Srinivasan.
The Pythagorean Theorem
Copyright©amberpasillas2010. For Learning to Happen! Please pay close attention to this lesson. This lesson is very short, only 2 slides ! My goal is.
CSC 213 – Large Scale Programming Lecture 3: Object-Oriented Analysis.
Probability (Grade 12) Daljit Dhaliwal. Sticks and Stones game.
Investigation #1 Factors and Products.
Process Improvement with Solitaire Using the PC Solitaire game to learn basic (and advanced) techniques of Process Improvement (So easy, even a can do.
Project 1 Tic Tac Toe Assigned Mon, Sep 8, 2003 Due Mon, Sep 15, 2003.
The ‘game’ is played by 12 players and 2 Accountants. The accountants and the first player can volunteer. Other players Are chosen as the game progresses.
EXAMPLE 2 Standardized Test Practice. SOLUTION EXAMPLE 2 Standardized Test Practice Place the center of the protractor on the vertex of the angle. Then.
Welcome to... A Game of X’s and O’s Another Presentation © All rights Reserved
Senior Project Poster Day 2007, CIS Dept. University of Pennsylvania Reversi Meng Tran Faculty Advisor: Dr. Barry Silverman Strategies: l Corners t Corners.
Directions: Each player has coloured pie chart. Players takes turns in rolling the numbered coloured die, player moves forward and places their counter.
Microsoft® Small Basic Collision Detection Estimated time to complete this lesson: 1 hour.
Formatting of game by Candace R. Black © All rights reserved. Formatting of Game by Candace R. Black © All Rights Reserved. This line of text.
CS430 © 2006 Ray S. Babcock LZW Coding Lempel-Ziv-Welch.
Game Procedures Who does what, where, when, and how?
Rules Of Chess!!!!!! By: Caylin Stappenbeck. Table Of Contents!!!! Rules*** Conclusion***
More – means the number is bigger like an elephant. Less – means the number is smaller like a mouse.
Winning Strategies of Games Played with Chips. I got a interesting game Now we show the game P 1 =4 P 2 =6 P 3 =8 Rule 1: Two players.
By Mr. Putnam. In Catfall, the goal of the game is to touch the falling cats with the mouse. Every time you touch a cat, your score goes up by one point.
12.1 – Probability Distributions
An alternative subtraction algorithm. In order to subtract, the top number must be larger than the bottom number To make the top number.
CHESS Basics for Beginners. BOARD SET-UP The letters go across the board in front of you. “White on right!” Each player has a white square in their right.
DO NOW. REVIEW Alternate Exterior REVIEW UNIT 1 REVIEW BINGO!
Picking Apples. Subtraction game. Turn over two cards from 0-10 Work out the difference. If you have an apple with this amount put a counter on it. First.
Chomp. How is the game played Human player goes first choose a square, all to the right and down are “eaten” computer takes a turn whoever is forced to.
Patrick Racy Project 19 1/9/12
Tic-Tac Toe.
Name____ 6__ Lesson #4 - Drawing Angles Jan 24. Objective: 1) to draw an angle of a given measure using a protractor. 2) to draw angles of 45º, 90º, and.
Hex: a Game of Connecting Faces. Player 1 Player 2 Players take turns placing blue chips (player 1) and red chips (player 2). Player 1 plays first. Player.
Presidential Mania 2-4 players ages 9+ Object: to travel around the board, and reach the White House. Contents: 1 presidential game-board, 4 colorful pieces,
Name 8/29/17.
Start on the corner of your picture *(Not the corner of the paper)
Gridding BIG Paper One square at a time….
Parallel Lines Discovery Activity
الأستاذ المساعد بقسم المناهج وطرق التدريس
Probability Die Difference and Uncertainty
Parallel Lines Discovery Activity
Label Name Label Name Label Name Label Name Label Name Label Name
Duo By: Fernando & Vivian.
Road to Civil War booklet directions
This is an Arithmagon….
C.2.10 Sample Questions.
C.2.8 Sample Questions.
C.2.8 Sample Questions.
Players choose either light or dark blue blocks to play.
B B B B K K K K W W W W B B B B G G G G C C C C D D D D L L L L K K K
Presentation transcript:

© 2007 Ray S. Babcock Tracks Game is played on a (nxn) set of squares. There are three possible moves (labeled A,B,C). Players alternate making a move to an empty square. Player 1 tries to make a continuous line from top to bottom (without any sharp angles). Player 2 tries to make a continuous line from left to right. First Player determined randomly.

© 2007 Ray S. Babcock Tracks Board

© 2007 Ray S. Babcock Sample Game : moves

© 2007 Ray S. Babcock Sample Game : Color Coded

© 2007 Ray S. Babcock Sample Game : Player 1 Wins!

© 2007 Ray S. Babcock Sample Game : no color

© 2007 Ray S. Babcock Sample Game : How It Really Looks