Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Main {
- public static void main(String[] args) {
- final int BASE_SIZE = 7;
- for (int r = BASE_SIZE; r > 0; r--)
- {
- for (int c = 0; c < r; c++)
- {
- System.out.print("#");
- }
- System.out.println();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment