lunes, 21 de marzo de 2011

CURSO EJEMPLO 10

import javax.swing.*;
public class localizar
{
    public static void main(String args[])
    {
        String t1;
        t1="JAVA ES DE OTRO NIVEL EN LA PROGRAMACIÓN";
        System.out.print("DONDE ESTA LA PALABRA JAVA: "+t1.indexOf("JAVA")+"\n");
        System.out.print("DONDE ESTA LA PALABRA NIVEL: "+t1.indexOf("NIVEL")+"\n");
        System.out.print("DONDE ESTA LA PALABRA LA: "+t1.indexOf("LA")+"\n");
        JOptionPane.showMessageDialog(null,"DONDE ESTA LA PALABRA NIVEL"+t1.indexOf("NIVEL"));
       
    }
}

No hay comentarios:

Publicar un comentario