Beispiel #1
0
        private void ExecuteRandomico()
        {
            dez3 = new int[_tamanho3];
            dez4 = new int[_tamanho4];
            dez5 = new int[_tamanho5];

            //Executa Analise vetor Randomico
            UtilidadeCarregaVetor.GerarVetorRandomico(_tamanho3, dez3);
            UtilidadeCarregaVetor.GerarVetorRandomico(_tamanho4, dez4);
            UtilidadeCarregaVetor.GerarVetorRandomico(_tamanho5, dez5);
        }
Beispiel #2
0
        private void ExecuteDecrescente()
        {
            dez3 = new int[_tamanho3];
            dez4 = new int[_tamanho4];
            dez5 = new int[_tamanho5];

            //Executa Analise vetor Decrescente
            UtilidadeCarregaVetor.GerarVetorDecrescente(_tamanho3, dez3);
            UtilidadeCarregaVetor.GerarVetorDecrescente(_tamanho4, dez4);
            UtilidadeCarregaVetor.GerarVetorDecrescente(_tamanho5, dez5);
        }