domingo, 9 de abril de 2017

Primos e não primos em array de inteiros

Agora fazendo poucas mudanças no último post
cheguemos neste aqui.
O programa marca no próprio array os números
primos e não primos em cores diferentes.
Quer ver como foi feito?
é só clicar no link abaixo ou em cima da imagem.

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



Veja abaixo o código do programa:



import java.awt.Toolkit;
import java.util.Scanner;

public class PROJETO {
     static int         tam  = 100;
     public static void main ( String [ ] args ) {
         J jht = new J ( );
         jht.textbackground ( jht.WHITE );
         jht.Moldura ( ( short ) 1, ( short ) 24, ( short ) 2, ( short ) 78 );
         jht.title ( " " );
         int i, j, a = 0;
         int arr [ ] = new int [ tam ];
         for ( i = 1; i <= tam; i++ ) {
              arr [ a ] = i;
              a++;
         }
         int c = 10;
         jht.textcolor ( jht.LIGHTRED );
         jht.gotoxy ( ( short ) 24, ( short ) 2 );
         System.out.printf ( "IMPRIMINDO PRIMOS E NÃO PRIMOS EM ARRAY " );
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( int ) 32, ( int ) 4 );
         System.out.printf ( "Por: " );
         jht.textcolor ( jht.LIGHTMAGENTA );
         System.out.printf ( "Samuel Lima" );
         jht.textcolor ( jht.BLACK );
         jht.gotoxy ( ( short ) 28, ( short ) 6 );
         System.out.printf ( "Imprimindo abaixo o array " );
         jht.textcolor ( jht.BLACK );
         jht.gotoxy ( ( int ) 16, ( int ) 8 );
         for ( i = 2; i < arr.length; i++ ) {
              if ( i == 10 || i == 20 || i == 30 || i == 40 || i == 50 ||
                        i == 60 || i == 70 || i == 80 || i == 90 || i == 100 )
                   System.out.printf ( "\n\t\t");
              int ePrimo = 1;
              for ( j = 2; j <= i / 2; j++ ) {
                   if ( i % j == 0 ) {
                        ePrimo = 0;
                        break;
                   }
              }
              if ( ePrimo == 1 ) {
                   jht.textcolor ( jht.LIGHTRED );
                   System.out.printf ( " %3d ", i );
              }
              for ( j = 2; j <= i / 2; j++ ) {
                   if ( i % j == 0 ) {
                        ePrimo = 0;
                        break;
                   }
              }
              if ( ePrimo == 0 ) {
                   jht.textcolor ( jht.LIGHTBLUE );
                   System.out.printf ( " %3d ", i );
              }
         }
         jht.textbackground ( jht.RED );
         //A coluna esquerda da moldura está sendo
         //refeita através deste método apaga
         jht.Apaga ( ( short ) 4, ( short ) 26, ( short ) 0,( short ) 2 );
         jht.cursortype ( ( short ) 0 );//Apaga o cursor
          /////////////////////////////////////////////////////////////////
         jht.textbackground ( jht.WHITE );  
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( short ) 13, ( short ) 19 );
         System.out.printf ( "Em vermelho as colunas dos números primoss entre " );
         jht.textcolor ( jht.LIGHTRED );
         System.out.printf ( "0 " );
         jht.textcolor ( jht.LIGHTBLUE );
         System.out.printf ( "e " );
         jht.textcolor ( jht.LIGHTRED );
         System.out.printf ( "100" );
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( short ) 13, ( short ) 20 );
         System.out.printf ( "Em azul as colunas dos números não primos entre " );
         jht.textcolor ( jht.LIGHTRED );
         System.out.printf ( "0 " );
         jht.textcolor ( jht.LIGHTBLUE );
         System.out.printf ( "e " );
         jht.textcolor ( jht.LIGHTRED );
         System.out.printf ( "100" );
         jht.textcolor ( jht.LIGHTRED );
         jht.gotoxy ( ( int ) 34, ( int ) 22 );
         System.out.printf ( "MUITO OBRIGADO" );
     }
}

Nenhum comentário:

Postar um comentário

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