Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. package alex.strings;
  2.  
  3. public class Main {
  4.  
  5. public static void main(String[] args) {
  6.  
  7. StringBuffer buffer = new StringBuffer("Horatio says 'tis but our fantasy");
  8. buffer.reverse();
  9. System.out.println(buffer);
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement