Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public class main {
  2. public static void main(String[] a) {
  3. String s = "print me";
  4. print(s, 20);
  5. }
  6.  
  7. public static void print(String str, int numberOfTimes) {
  8. for(int i = 0; i < numberOfTimes; i++) {
  9. System.out.println(str);
  10. }
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement