segunda-feira, 1 de maio de 2017

Frase - contando dígitos

Mostrei um exemplo no último post de como
contar somente os caracteres numa frase híbrida,
contendo caracteres e dígitos.
Agora vamos introduzir uma frase híbrida novamente
só que desta vez vamos imprimir e contar apenas
os dígitos contidos na frase.
o programa já está preparado para isto,
fiz poucas mudanças para que este objetivo
fosse atingido, e se você quiser pode conferir
agora mesmo como fiz.
Os caracteress são cortados e só os dígitos
são imprimidos, e em seguida informado sua quantidade.
Não perca tempo, clique no link e veja você mesmo.

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


Veja abaixo o código do programa:



import java.util.Scanner;
public class PROJETO {
     public static int tam = 50;
     public static void main ( String args [ ] ) {
         J jht = new J ( );
         jht.textbackground ( jht.WHITE );
         jht.Moldura ( ( short ) 1, ( short ) 24, ( short ) 2, ( short ) 68 );
         jht.title ( " " );
         char [ ] Vet = new char [ tam ];
         int h = 0, k, i = 0, j, lenv;
         char [ ] Num = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' };
         String entr = "";
         char [ ] frase = new char [ tam ];
         jht.textcolor ( jht.LIGHTRED );
         jht.gotoxy ( ( int ) 23, ( int ) 3 );
         System.out.printf ( "FRASE - CONTANDO DÍGITOS" );
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( int ) 13, ( int ) 5 );
         System.out.printf ( "Digite uma frase ==> " );
         jht.textcolor ( jht.LIGHTRED );
         Scanner dados = new Scanner ( System.in );
         entr = dados.nextLine ( );
         //frase recebe uma cópia de entr convertida para char
         frase = entr.toCharArray();
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( int ) 13, ( int ) 7 );
         System.out.printf ( "Frase digitada ==> " );
         jht.textcolor ( jht.LIGHTRED );
         for ( i = 0; i < frase.length; i++ ) {
              System.out.print ( frase [ i ] );
         }
         jht.getche ( );
     //////////////////////////////////////////////////////////////////////
         //lenv recebe o comprimento do array de char Num
         lenv = Num.length;
         for ( i = 0; i < frase.length; i++ ) {
              for ( j = 0; j < lenv; j++ ) {
                   if ( Num [ j ] == frase [ i ] ) {
                        Vet [ h ] = frase [ i ];
                        h++;
                   }

              }
         }
         k = h;
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( int ) 13, ( int ) 9 );
         System.out.printf ( "Imprimindo abaixo só os dígitoss da frase" );
         jht.textcolor ( jht.LIGHTRED );
         jht.gotoxy ( ( int ) 23, ( int ) 11 );
         for ( h = 0; h < k; h++ ) {
              System.out.printf ( " %c ", Vet [ h ] );
         }
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( int ) 13, ( int ) 13 );
         System.out.printf ( "Quantidade de dígitos ==> " );
         jht.textcolor ( jht.LIGHTRED );
         System.out.print ( h );
         jht.getche ( );
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( int ) 20, ( int ) 17 );
         jht.Sleep ( ( short ) 1800 );
         System.out.printf ( "Por: " );
         jht.textcolor ( jht.LIGHTMAGENTA );
         System.out.printf ( "Samuel Lima" );
         jht.textcolor ( jht.BLACK );
         jht.gotoxy ( ( int ) 20, ( int ) 18 );
         System.out.printf ( "sa_sp10@hotmail.com" );
         jht.Sleep ( ( short ) 1800 );
         jht.textcolor ( jht.LIGHTRED );
         jht.gotoxy ( ( int ) 29, ( int ) 22 );
         System.out.printf ( "MUITO OBRIGADO" );
         jht.getche ( );     
     }
}
 



Nenhum comentário:

Postar um comentário

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