public class MegaSenaTeste
{
       int qtde_Numeros = 60;
       //int []nota new int[70];
       int []Globo_Numeros  = new int [60];
       public MegaSenaTeste ()
       {
       }
       //Método para gerar um número aleatorio
       public int Retorna_Numero_Aleatorio()
       {
              int i = 1 + (int) (Math.random() * qtde_Numeros);
              return i;
       }
}