Creating a simple Craps game in Java

Can you guys help me out? I'm trying to create a very simple game of craps but having some trouble. Below are the rules and requirements. Much appreciated!

Given the following rules for the game of Craps, simulate the play of a game, using the console to output the results of each roll and a WIN/LOSE message. Example output for a couple of runs is shown.

The player rolls two 6-sided dice (hint: use 1 + (int)(Math.random() * 6) ) to generate a random number between 1 and 6

A roll of 7 or 11 on the first try is a WIN

A roll of 2, 3 or 12 on the first try is a LOSE

Any other roll on the first try becomes the player's POINT

If a player rolled POINT, the player continues to roll until one of two things happens:

If a player in POINT rolls the POINT again, it is a WIN

If a player in POINT rolls 7, it is a LOSE

Example runs:

You rolled 7.

You win!

You rolled 12.

You lose!

You rolled 4. POINT is 4.

You rolled 3. POINT is 4.

You rolled 11. POINT is 4.

You rolled 4.

You win!

[1103 byte] By [mer000a] at [2007-11-27 8:53:31]
# 1
What do you need help with?
ita6cgra at 2007-7-12 21:10:59 > top of Java-index,Java Essentials,Java Programming...
# 2
Could you post the code that is giving you trouble?Before posting code, read this please: http://forum.java.sun.com/help.jspa?sec=formatting
prometheuzza at 2007-7-12 21:10:59 > top of Java-index,Java Essentials,Java Programming...
# 3
No one here will do your homework for you.Give it a go and come back here with a specific question if you run into trouble.
dwga at 2007-7-12 21:10:59 > top of Java-index,Java Essentials,Java Programming...
# 4
I thought the school year was over by now. A few more days, I suppose.
BigDaddyLoveHandlesa at 2007-7-12 21:10:59 > top of Java-index,Java Essentials,Java Programming...