Algumas vezes precisamos conhecer o tamanho
de uma frase digitada, e se for este seu caso
no momento, lhe apresento o método length();
O método length(); retorna o comprimento em
número de caracteres de uma String, e isto
é tudo o que precisamos.
Neste exemplo vamos comparar os tamanhos
de duas frases e vamos informar qual é a maior
ou se são iguais.
Não demore, clique no link agora e veja meu exemplo:
Veja abaixo uma imagem do programa em execução:
Veja abaixo o código do programa:
de uma frase digitada, e se for este seu caso
no momento, lhe apresento o método length();
O método length(); retorna o comprimento em
número de caracteres de uma String, e isto
é tudo o que precisamos.
Neste exemplo vamos comparar os tamanhos
de duas frases e vamos informar qual é a maior
ou se são iguais.
Não demore, clique no link agora e veja meu 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_1 = "";
String frase_2 = "";
jht.textcolor ( jht.LIGHTRED );
jht.gotoxy ( ( int ) 21, ( int ) 3 );
System.out.printf ( "FRASES -
COMPARANDO TAMANHOS" );
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_1 = dados.nextLine ( );
jht.textcolor ( jht.LIGHTBLUE );
jht.gotoxy ( ( int ) 13, ( int ) 7 );
System.out.printf ( "Frase
digitada ==> " );
jht.textcolor ( jht.LIGHTRED );
System.out.printf ( frase_1 );
jht.getche ( );
jht.textcolor ( jht.LIGHTBLUE );
jht.gotoxy ( ( int ) 13, ( int ) 9 );
System.out.printf ( "Digite outra
frase ==> " );
jht.textcolor ( jht.LIGHTRED );
Scanner dados_2 = new Scanner ( System.in );
frase_2 = dados.nextLine ( );
jht.textcolor ( jht.LIGHTBLUE );
jht.gotoxy ( ( int ) 13, ( int ) 11 );
System.out.printf ( "Frase
digitada ==> " );
jht.textcolor ( jht.LIGHTRED );
System.out.printf ( frase_2 );
jht.getche ( );
int fra_se_1 = frase_1.length ( );
int fra_se_2 = frase_2.length ( );
if ( fra_se_1 > fra_se_2 ) {
jht.textcolor ( jht.LIGHTBLUE );
jht.gotoxy ( ( int ) 13, ( int ) 13 );
System.out.println ( "A ");
jht.textcolor ( jht.LIGHTRED );
jht.gotoxy ( ( int ) 15, ( int ) 13 );
System.out.println ( "1ª ");
jht.textcolor ( jht.LIGHTBLUE );
jht.gotoxy ( ( int ) 18, ( int ) 13 );
System.out.println ( "frase é maior
do que a ");
jht.textcolor ( jht.LIGHTRED );
jht.gotoxy ( ( int ) 41, ( int ) 13 );
System.out.println ( "2ª ");
} else if ( fra_se_2 > fra_se_1 ) {
jht.textcolor ( jht.LIGHTBLUE );
jht.gotoxy ( ( int ) 13, ( int ) 13 );
System.out.println ( "A ");
jht.textcolor ( jht.LIGHTRED );
jht.gotoxy ( ( int ) 15, ( int ) 13 );
System.out.println ( "2ª ");
jht.textcolor ( jht.LIGHTBLUE );
jht.gotoxy ( ( int ) 18, ( int ) 13 );
System.out.println ( "frase é maior
do que a ");
jht.textcolor ( jht.LIGHTRED );
jht.gotoxy ( ( int ) 41, ( int ) 13 );
System.out.println ( "1ª ");
} else {
jht.textcolor ( jht.LIGHTBLUE );
jht.gotoxy ( ( int ) 13, ( int ) 13 );
System.out.println ( "A ");
jht.textcolor ( jht.LIGHTRED );
jht.gotoxy ( ( int ) 15, ( int ) 13 );
System.out.println ( "1ª ");
jht.textcolor ( jht.LIGHTBLUE );
jht.gotoxy ( ( int ) 18, ( int ) 13 );
System.out.println ( "frase tem o
mesmo tamanho da ");
jht.textcolor ( jht.LIGHTRED );
jht.gotoxy ( ( int ) 47, ( int ) 13 );
System.out.println ( "2ª ");
}
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.