Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2014
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.46 KB | None | 0 0
  1.  
  2. public class H53Oef4 {
  3.  
  4.     public static void main(String[] args) {
  5.         // TODO Auto-generated method stub
  6.         // declaratie
  7.             String woord,deel1,deel2;
  8.            
  9.         //invoer
  10.             woord=Invoer.leesString("geef het woord in");
  11.             woord = woord.toUpperCase();
  12.            
  13.         // bewerking
  14.             deel2=woord.substring(woord.indexOf("E"));
  15.             deel1=woord.substring(0,woord.indexOf("E"));
  16.             deel1 = deel1.toLowerCase();
  17.             woord=deel1+deel2;
  18.             System.out.println(woord);
  19.  
  20.     }
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement