Advertisement
Guest User

Untitled

a guest
Dec 11th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. package random;
  2. import java.util.*;
  3. public class Add {
  4. public static void main(String args[]) {
  5. methodOne();
  6. methodOne();
  7. methodTwo();
  8. methodTwo();
  9. System.out.println("they all run after the farmer's wife.");
  10. }
  11. public static void methodOne() {
  12. System.out.println("Three blind mice,");
  13. }
  14. public static void methodTwo() {
  15. System.out.println("see how they run,");
  16. }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement