Advertisement
LightProgrammer000

Mega Sena

Jun 30th, 2024
572
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.29 KB | None | 0 0
  1. import java.util.Scanner;
  2. import java.util.InputMismatchException;
  3. import static java.lang.Math.random;
  4.  
  5. public class EX22
  6. {
  7.     public static void main(String[] args)
  8.     {
  9.         try
  10.         {
  11.             // Instanciacao
  12.             Scanner ent = new Scanner(System.in);
  13.            
  14.             // Programa
  15.             cartelaJogos(qtdJogo(ent));
  16.         }
  17.        
  18.         catch (InputMismatchException e)
  19.         {
  20.             System.out.println("# Valor invalido");                                
  21.         }
  22.     }  
  23.  
  24.     private static int qtdJogo(Scanner ent)
  25.     {
  26.         System.out.print("# Quantidade de jogos: ");
  27.        
  28.         return ent.nextInt();
  29.     }
  30.    
  31.     private static void cartelaJogos(int qtd)
  32.     {
  33.         int cont = 0;
  34.        
  35.         while (qtd > 0)
  36.         {
  37.             System.out.printf("\n***** CARTELA [%d] *****\n", cont + 1);
  38.  
  39.             // Estrutura de repetica: Formacao das cartelas
  40.             for (int i = 0; i < 6; i++)
  41.             {
  42.                 System.out.printf("\n# Numero [%d]: %d", (i + 1), (int) (1 + random() * 60));
  43.             }
  44.             System.out.println("\n---------------------------------------------");
  45.            
  46.             // Controle
  47.             qtd --;
  48.             cont ++;
  49.         }
  50.     }
  51. }
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement