public class MegaSena1007
{

       int[] Numeros_Primario        = new int[60];
       int[] Numeros_Aleatorios      = new int[60];

       public MegaSena1007()
       {
              Carrega_VetorAleatorio();
       }

       public void Carrega_VetorPrimario()
       {
              int i = 0;
              while(i < 60)
              {
                      Numeros_Primario [i] = i +1;
                      System.out.print("-"+ Numeros_Primario [i]);
                      i = i +1;
              }
              System.out.println("-");
              System.out.println("-" + "Vetor Primario Carregado");
       }
       public void Carrega_VetorAleatorio()  //Refazer este método
       {      //Será sempre necessário Carregar o Vetor Primário
              Carrega_VetorPrimario();
              //Inicio da apsota principal
              int Contador = 0;
              int Auxiliar = Retorna_Numero_Aleatorio();

              while(Contador < 61)
              {

                       Numeros_Aleatorios[Contador] = Auxiliar;
                       System.out.print("-" + Numeros_Aleatorios[Contador]);
                       Numeros_Primario [Auxiliar] = 0;
                       Auxiliar = Retorna_Numero_Aleatorio();
                       Contador = Contador + 1;
              }
       }   /////////////Fim do Carregamento da Aposta Aleatória
       public static void main (String args [])
       {
              new MegaSena1007 ();
       }
       ///////////////
       public int Retorna_Numero_Aleatorio()  //Método que gera as sequencias aleatórias
       {
              int i = 1 + (int) (Math.random() * 60);
              return i;
       }
       ///////////////

}