Ver Mensaje Individual
  #4 (permalink)  
Antiguo 27/08/2012, 10:52
parakas14
 
Fecha de Ingreso: junio-2012
Ubicación: Paradas (Sevilla)
Mensajes: 13
Antigüedad: 12 años, 6 meses
Puntos: 0
Respuesta: método para buscar palabras?

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package javaapplication1;

/**
*
* @author Jero
*/
import java.io.*;
import java.util.StringTokenizer;

public class Numeros {

static int total=0;
static int x=0;

static int numCifras (int x){
while(x!=0){
x=x/10;
total+=1;
}
return total;
}

public static int palabras(String texto, String textoBuscado){
int posicion=0;
boolean mayusculas=true;
int numPalabras=0;
String token="";
StringTokenizer Busca=new StringTokenizer(texto);

while(Busca.hasMoreTokens()) {
String palabrilla=Busca.nextToken();
if(mayusculas) {
if(palabrilla.compareTo(textoBuscado)==0){
numPalabras++;
}else if(palabrilla.toLowerCase().compareTo(textoBuscado .toLowerCase())==0){
numPalabras++;
}
}
}
return numPalabras;
}

public static boolean compara(int a, int b) {
if (a > b && (a - b) >= 2) {
return true;
} else {
return false;
}
}

public static void main(String[]args) throws IOException{
BufferedReader leer = new BufferedReader(new InputStreamReader(System.in));
System.out.println("Introduce un numero:");
String linea = leer.readLine();
x= Integer.parseInt(linea);
System.out.println("El resultado es:");
System.out.println(x);

System.out.println();

System.out.println("Introduce un texto:");
String texto = leer.readLine();
System.out.println("Introduce una palabra:");
String palabra = leer.readLine();

System.out.println("El resultado es:");
System.out.println(palabras(texto,palabra));

System.out.println();

System.out.println("Introduce un numero:");
linea = leer.readLine();
x= Integer.parseInt(linea);
System.out.println("Introduce otro numero:");
String linea2 = leer.readLine();
int y= Integer.parseInt(linea2);
System.out.println("El resultado es:");
System.out.println(compara(x,y));


}
}




LA EJECUCIÓN QUE YO HE HECHO HA SIDO (SUPONIENDO QUE ESTÁS BUSCANDO PALABRAS DENTRO DE UN TEXTO):

Introduce un numero:
5
El resultado es:
5

Introduce un texto:
amparo que kdkd que kdkd jdjd que
Introduce una palabra:
que
El resultado es:
3

Introduce un numero:
10
Introduce otro numero:
5
El resultado es:
true
BUILD SUCCESSFUL (total time: 50 seconds)