コード例 #1
0
ファイル: Form1.cs プロジェクト: gusta-of/AnaliseEmpirica
        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);
        }
コード例 #2
0
ファイル: Form1.cs プロジェクト: gusta-of/AnaliseEmpirica
        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);
        }