Search:

Type: Posts; User: iSuckAtJava

Search: Search took 0.10 seconds.

  1. Replies
    10
    Views
    1,164

    Hourglass.

    //Makes bottom half of hourglass.
    public static void bottom(int rows) {
    for (int j = 1; j < rows; j++) {
    printChars(' ', rows - j);
    ...
  2. Replies
    10
    Views
    1,164

    Re: HourGlass [Due tonight need help!]

    I could not get it to print | | in the middle instead of \/.
    But everything else prints how it asks for.
  3. Replies
    10
    Views
    1,164

    Re: HourGlass [Due tonight need help!]

    Thanks...

    If anyone can help me that'd be cool.
  4. Replies
    10
    Views
    1,164

    HourGlass [Due tonight need help!]

    public class DrawHourGlass {

    public static void main(String[] args) {

    System.out.println("An hourglass of size 4:");
    drawHourGlass(4); // draw an hourglass of size 4
    ...
Results 1 to 4 of 4