I'm trying to write a program to simulate a tortoise & hare program. They begin at square 1 of 70. There is a clock that ticks once per second. With each tick, the program should adjust the position of the animals according to a chart I've been given to follow. Variables keep track of the animal's positions. Position numbers are 1-70. For each tick of the clock, I need to print a 70 position line showing the letter T for tortoise & H for hare. If they land in the same square, OUCH needs to be printed. Besides the potential OUCH, all print positions besides the T & H should be blank.
I'm not begging for code. I'm just drawing a total blank atm. I need something to help get me started. It just seems like so much in this program that I can't figure out how to even start it all up.
-Kahaj