Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- import java.util.InputMismatchException;
- import static java.lang.Math.random;
- public class EX22
- {
- public static void main(String[] args)
- {
- try
- {
- // Instanciacao
- Scanner ent = new Scanner(System.in);
- // Programa
- cartelaJogos(qtdJogo(ent));
- }
- catch (InputMismatchException e)
- {
- System.out.println("# Valor invalido");
- }
- }
- private static int qtdJogo(Scanner ent)
- {
- System.out.print("# Quantidade de jogos: ");
- return ent.nextInt();
- }
- private static void cartelaJogos(int qtd)
- {
- int cont = 0;
- while (qtd > 0)
- {
- System.out.printf("\n***** CARTELA [%d] *****\n", cont + 1);
- // Estrutura de repetica: Formacao das cartelas
- for (int i = 0; i < 6; i++)
- {
- System.out.printf("\n# Numero [%d]: %d", (i + 1), (int) (1 + random() * 60));
- }
- System.out.println("\n---------------------------------------------");
- // Controle
- qtd --;
- cont ++;
- }
- }
- }
Advertisement
Advertisement