Guest User

Untitled

a guest
Feb 18th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1.     roofBtm("|", 4);
  2.     roofBtm(" ", 69);
  3.     roofBtm("|", 4);
  4. .
  5. .
  6. .
  7.     public static void roofBtm(char ch, int number) {
  8.         for (int i = 1; i <= number; i++) {
  9.             System.out.print(ch);
  10.         }
Add Comment
Please, Sign In to add comment