Recent content by itszlikewhoa

  1. I

    java programming help

    that helped alot! thank you!
  2. I

    java programming help

    ok so i get how to do the first triangle and here's the code i came up with for it: public void starsA() { final int MAX_ROWS = 6; for(int row = 1; row <=MAX_ROWS; row++) { for(int star =1; star <=row; star++)...