Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1.  
  2. public class StringHelperTester {
  3. public static void main(String[] args) {
  4. System.out.println("Welcome to the String Helper Tester\n");
  5.  
  6. StringHelper HELP= new StringHelper();
  7.  
  8. System.out.println("Testing mesh strings: " + HELP.meshStrings("harp", "fiddle"));
  9. System.out.println("Testing replace vowels with oodle: " + HELP.replaceVowelsWithOodle("burrito"));
  10. System.out.println("Testing string’s weight: " + HELP.weight("harp"));
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement