quarta-feira, 1 de março de 2017

Múltiplos de um número em array

Qualquer número multiplicado pela sequência
dos números naturais, obtém - se os seus Múltiplos,
Veja abaixo a sequência dos Números Múltiplos de 2 até 5:

2 x 0 = 0
2 x 1 = 2
2 x 2 = 4
2 x 3 = 6
2 x 4 = 8
2 x 5 = 10

Portanto 2, 4, 6, 8 e 10 são Múltiplos de { 2 },
Partindo desta lógica ficou fácil criar este programa em java .
 Programei a saída para que só imprima entradas até 10,
isto foi usado como proteção para a visualização.
Aproveite o código e bons estudos.

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


Veja abaixo o código do programa:



import java.util.Random;
import java.util.Scanner;

public class PROJETO {
     public static int  tam  = 100;

     public static void imprime ( int vet [ ] ) {
         J jht = new J ( );
         int a = 0, i, temp, y, result = 0;
         // /////////////////////////////
         for ( i = 1; i <= tam; i++ ) {
              vet [ a ] = i;
              a++;
         }
         Random random = new Random ( );
         for ( a = 0; a < tam; a++ ) {
              y = random.nextInt ( tam );
              temp = vet [ a ];
              vet [ a ] = vet [ y ];
              vet [ y ] = temp;
         }
         jht.textcolor ( jht.BLACK );
         for ( i = 0; i < vet.length; i++ ) {
              if ( i == 0 )
                   jht.gotoxy ( ( int ) 21, ( int ) 6 );
              if ( i == 10 )
                   jht.gotoxy ( ( int ) 21, ( int ) 7 );
              if ( i == 20 )
                   jht.gotoxy ( ( int ) 21, ( int ) 8 );
              if ( i == 30 )
                   jht.gotoxy ( ( int ) 21, ( int ) 9 );
              if ( i == 40 )
                   jht.gotoxy ( ( int ) 21, ( int ) 10 );
              if ( i == 50 )
                   jht.gotoxy ( ( int ) 21, ( int ) 11 );
              if ( i == 60 )
                   jht.gotoxy ( ( int ) 21, ( int ) 12 );
              if ( i == 70 )
                   jht.gotoxy ( ( int ) 21, ( int ) 13 );
              if ( i == 80 )
                   jht.gotoxy ( ( int ) 21, ( int ) 14 );
              if ( i == 90 )
                   jht.gotoxy ( ( int ) 21, ( int ) 15 );
              System.out.print ( " " );
              System.out.printf ( "%3d", vet [ i ] );
              result += vet [ i ];
         }
         // /////////////////////////////////////////////////
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( int ) 22, ( int ) 17 );
         jht.Sleep ( ( short ) 500 );
         System.out.printf ( "Total de números gerados ==> " );
         jht.textcolor ( jht.LIGHTRED );
         System.out.printf ( "%d", i );
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( int ) 22, ( int ) 18 );
         jht.Sleep ( ( short ) 500 );
         System.out.printf ( "Soma dos números gerados ==> " );
         jht.textcolor ( jht.LIGHTRED );
         System.out.printf ( "%d", result );
         jht.Sleep ( ( short ) 500 );
     }
     ///////////////////////////////////////////////////
     public static void main ( String args [ ] ) {
         int vet [ ] = new int [ tam ];
         int i, j = 0, x = 0;
         J jht = new J ( );
         do{
              jht.cls ( );
              jht.textbackground ( jht.WHITE );
              jht.Moldura ( ( short ) 1, ( short ) 30, ( short ) 2, ( short ) 78 );
              jht.title ( " " );
              jht.textcolor ( jht.LIGHTRED );
              jht.gotoxy ( ( int ) 28, ( int ) 2 );
              System.out.printf ( "MÚLTIPLOS DE NÚMEROS EM ARRAY" );
              jht.textcolor ( jht.LIGHTBLUE );
              jht.gotoxy ( ( int ) 28, ( int ) 4 );
              System.out.printf ( "Abaixo os ");
              jht.textcolor ( jht.LIGHTRED );
              System.out.printf ( "100 ");
              jht.textcolor ( jht.LIGHTBLUE );
              System.out.printf ( "números gerados" );
              jht.textcolor ( jht.BLACK );
              imprime ( vet );
             //////////////////////////////////////////////////////////////////
              jht.textcolor ( jht.LIGHTBLUE );
              jht.gotoxy ( ( int ) 22, ( int ) 20 );
              System.out.printf ( "Digite um número entre ");
              jht.textcolor ( jht.LIGHTRED );
              System.out.printf ( "2");
              jht.textcolor ( jht.LIGHTBLUE );
              System.out.printf ( " e");
              jht.textcolor ( jht.LIGHTRED );
              System.out.printf ( " 10 ");
              jht.textcolor ( jht.BLACK );
              Scanner sc = new Scanner ( System.in );
              j = sc.nextInt ( );
              jht.textcolor ( jht.LIGHTBLUE );
              jht.gotoxy ( ( int ) 22, ( int ) 22 );
              System.out.printf ( "Abaixo seus múltiplos no array " );
              jht.gotoxy ( ( int ) 22, ( int ) 24 );
              jht.textcolor ( jht.BLACK );
             //////////////////////////////////////////////////////////////////
              if ( j == 2 )
                   x = 50;
              if ( j == 3 )
                   x = 33;
              if ( j == 4 )
                   x = 25;
              if ( j == 5 )
                   x = 21;
              if ( j == 6 )
                   x = 17;
              if ( j == 7 )
                   x = 15;
              if ( j == 8 )
                   x = 13;
              if ( j == 9 )
                   x = 11;
              if ( j == 10 )
                   x = 10;
              for ( i = 1; i < x * j; i++ ) {
                   if ( i % j == 0 ) {
                        System.out.printf ( "%d ", i );
                   }
              }
             //////////////////////////////////////////////////////////////////
              jht.textcolor ( jht.LIGHTBLUE );
              jht.gotoxy ( ( int ) 22, ( int ) 26 );
              jht.Sleep ( ( short ) 1800 );
              System.out.printf ( "Por: " );
              jht.textcolor ( jht.LIGHTMAGENTA );
              System.out.printf ( "Samuel Lima" );
              jht.textcolor ( jht.BLACK );
              jht.gotoxy ( ( int ) 22, ( int ) 27 );
              System.out.printf ( "sa_sp10@hotmail.com" );
              jht.Sleep ( ( short ) 1800 );
              jht.textcolor ( jht.LIGHTRED );
              jht.gotoxy ( ( int ) 34, ( int ) 29 );
              System.out.printf ( "MUITO OBRIGADO" );
              jht.getche ( );
         }while ( true );

     }
}

Nenhum comentário:

Postar um comentário

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