Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public void readTimeRekursiv(String word) throws WordEmptyException,IOException {
  2. long startZeit = System.nanoTime();
  3.  
  4. long endZeit = 0;
  5.  
  6. palindromRekursiv(word);
  7. endZeit = System.nanoTime() - startZeit;
  8.  
  9. writeInFile(DATEI_REK,word,endZeit);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement