segunda-feira, 1 de maio de 2017

Frase - contando palavras

Ainda tenho que mostrar este exemplo,
dada uma frase qualquer, queremos contar
quantas palavras esta frase contém, e a maneira
mais fácil de fazer isto é usando o método split
da classe String que divide a String em um array
de Strings.
Acompanhe este claro exemplo:

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 void main ( String args [ ] ) {
         J jht = new J ( );
         jht.textbackground ( jht.WHITE );
         jht.Moldura ( ( short ) 1, ( short ) 24, ( short ) 2, ( short ) 68 );
         jht.title ( " " );
         int i, quant = 0;
         String frase = "";
         String [ ] pala_vras = new String [ frase.length ( ) ];
         jht.textcolor ( jht.LIGHTRED );
         jht.gotoxy ( ( int ) 23, ( int ) 3 );
         System.out.printf ( "FRASE - CONTANDO PALAVRAS" );
         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 );
         frase = dados.nextLine ( );
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( int ) 13, ( int ) 7 );
         System.out.printf ( "Frase digitada ==> " );
         jht.textcolor ( jht.LIGHTRED );
         System.out.print ( frase );
         jht.getche ( );
         pala_vras = frase.split ( " " );
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( int ) 13, ( int ) 9 );
         System.out.printf ( "Quantidade de palavras ==> " );
         jht.textcolor ( jht.LIGHTRED );
         System.out.print ( pala_vras.length );
         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.