Talk:A simple card game in Java ME
Article Review by Larry101
(20090927)
This is a rather different Wiki article, in that it merely demonstrates a simple card game application. The game is very simple. In each round, you have a card and the computer has a card and you can place a bet. If the value of your card is greater than the computer's card, you win double your bet. Otherwise you lose your bet. The object of the game is to win as much money as possible.
This is a rather different Wiki article, in that it merely demonstrates a simple card game application. The game is very simple. In each round, you have a card and the computer has a card and you can place a bet. If the value of your card is greater than the computer's card, you win double your bet. Otherwise you lose your bet. The object of the game is to win as much money as possible.
While it doesn’t focus on demonstrating a single concept or technique, it is useful to demonstrate several things together in a single game application. It shows how to implement game logic, manage user input and make use of the Canvas to create the user interface of a card game.

