Guest User

Untitled

a guest
Nov 13th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. public static void main(String[] args) {
  2. Scanner leer = new Scanner(System.in);
  3. int cont = 0;
  4. int posicion;
  5. System.out.println("Dime una frase");
  6. String oracion = leer.nextLine();
  7.  
  8. posicion = oracion.indexOf(" ");
  9.  
  10. while (posicion != -1) {
  11. for (int i = 1; i < oracion.charAt(posicion) - 1; i++) {
  12. oracion.charAt(i);
  13. System.out.println(oracion);
  14. }
  15.  
  16. posicion = oracion.indexOf(" ", posicion + 1);
  17. }
  18. }
Add Comment
Please, Sign In to add comment