quinta-feira, 26 de janeiro de 2017

Array pré definido em java - Testando dll

Com certeza você não conseguirá compilar este código feito em java,
e quem sabe java verá que o código possui funções que não tem nada
a ver com java. Criei uma dll há alguns mêses atrás e arquivei, e agora
pouco mechendo por aqui a encontrei, e não demorou muito criei
este exemplo para testar se ainda funciona, quer testar também?
seria muito bom pra mim receber uns feedback de algumas pessoas
sobre o funcionamento desta dll, por aqui mesmo encapsulo num
arquivo .rar e te mando, é só querer testá-la.
Só lembrando que só funcionará no windows.

Veja abaixo uma imagem do programa em execução:


Veja abaixo o código do programa:


public class PROJETO {
public static void main ( String[] args ) {
     J jht = new J ( );
     jht.title ( " " );
    jht.Moldura ( ( short ) 1, ( short )  24, ( short ) 2, ( short )  78 );
         int n = 100, a = 0, i, maior, menor;
         int reais[] =
        {36,  48, 34,  89,  25 , 56,  1 ,  59, 2 , 81,
         15,  22, 65,  17,  91 , 6 ,  11,  93, 26, 55,
         85,  8 , 35,  24,  39 , 27,  76,  14, 21, 99,
         66,  95, 87,  69,  450, 51,  20,  18, 71, 46,
         33,  45, 57,  67,  80 , 50,  64,  82, 83, 92,
         31,  13, 94,  16,  47 , 10,  61,  63, 74, 60,
         54,  88, 37,  77,  23 , 38,  86,  43, 72, 78,
         70,  98, 73,  52,  42 , 28,  68,  3 , 41, 75,
         58,  79, 84,  97,  4  , 5 ,  0 ,  19, 7 , 32,
         44,  62, 90,  53,  40 , 30,  96,  29, 12, 49};
         jht.textcolor ( jht.LIGHTRED );
         jht.gotoxy ( ( short )26, ( short ) 3 );
         System.out.printf("ARRAY PRÉ - DEFINIDO EM JAVA");
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( short )24, ( short ) 5 );
         System.out.printf("Veja abaixo os 100 números do array");
         jht.textcolor ( jht.BLACK );
         jht.gotoxy ( ( short )16, ( short ) 7 );
         for (i = 0; i < 100; i++) {
              if ( i == 0 )
              jht.gotoxy ( ( short )16, ( short ) 7 );
              if ( i == 10 )
              jht.gotoxy ( ( short )16, ( short ) 8 );
              if ( i == 20 )
              jht.gotoxy ( ( short )16, ( short ) 9 );
              if ( i == 30 )
              jht.gotoxy ( ( short )16, ( short ) 10 );
              if ( i == 40 )
              jht.gotoxy ( ( short )16, ( short ) 11 );
              if ( i == 50 )
              jht.gotoxy ( ( short )16, ( short ) 12 );
              if ( i == 60 )
              jht.gotoxy ( ( short )16, ( short ) 13 );
              if ( i == 70 )
              jht.gotoxy ( ( short )16, ( short ) 14 );
              if ( i == 80 )
              jht.gotoxy ( ( short )16, ( short ) 15 );
              if ( i == 90 )
              jht.gotoxy ( ( short )16, ( short ) 16 );
              System.out.printf(" %3d ", reais [ i ] );
         }
         jht.getche ( );
         maior = reais [ 0 ];
         for ( i = 1; i < n; i++ ) {
              if ( reais [ i ] > maior )
              maior = reais [ i ];
         }
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( short ) 18, ( short ) 18 );
         System.out.printf("O maior número é ==> ");
         jht.textcolor ( jht.LIGHTRED );
         System.out.printf("%d ", maior);
         menor = reais[0];
         for ( i = 1; i < n; i++ ) {
              if ( reais [ i ] < menor )
              menor = reais [ i ];
         }
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( short ) 18, ( short ) 19 );
         System.out.printf("O menor número é ==> ");
         jht.textcolor ( jht.LIGHTRED );
         System.out.printf("%d ", menor);
         jht.Sleep ( ( short ) 1800 );
         jht.textcolor ( jht.LIGHTRED );
         jht.gotoxy ( ( short ) 30, ( short ) 21 );
         System.out.printf("Por: ");
         jht.textcolor ( jht.BLACK );
         System.out.printf("Samuel Lima");
         jht.Sleep ( ( short ) 1800 );
         jht.gotoxy ( ( short ) 35, ( short ) 23 );
         jht.textcolor ( jht.LIGHTRED );
         System.out.printf("MUITO OBRIGADO");
     }
}

Nenhum comentário:

Postar um comentário

Observação: somente um membro deste blog pode postar um comentário.