Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thiagotn/jogodado
Android Jogo de Dado
https://github.com/thiagotn/jogodado
Last synced: about 2 months ago
JSON representation
Android Jogo de Dado
- Host: GitHub
- URL: https://github.com/thiagotn/jogodado
- Owner: thiagotn
- Created: 2015-11-12T20:09:33.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-13T15:59:42.000Z (about 9 years ago)
- Last Synced: 2023-03-11T21:51:14.941Z (almost 2 years ago)
- Language: Java
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Jogo do Dado
Crie um simples jogo de dados entre o computador e o jogador que efetue o sorteio dos dados e exiba o vencedor da partida;
Utilize as imagens já fornecidas;
Para sortear um número entre 0 e 5 utilize o exemplo abaixo (onde n conterá o valor sorteado):
Random r = new Random(); int n = r.nextInt(6);
Utilize o Toast para indicar o vencedor.![alt tag](https://raw.githubusercontent.com/thiagotn/JogoDado/master/computador-ganhou.png)