BowTie.java


Below is the syntax highlighted version of BowTie.java from §1.3 Conditionals and Loops.


/******************************************************************************
 *  Compilation:  javac BowTie.java
 *  Execution:    java BowTie n
 *
 *  Prints out a bowtie of "radius" n like the one below.
 *
 *  % java BowTie 3
 *  * . . . . . *
 *  * * . . . * *
 *  * * * . * * *
 *  * * * * * * *
 *  * * * . * * *
 *  * * . . . * *
 *  * . . . . . *
 *
 ******************************************************************************/

public class BowTie {

    public static void main(String[] args) {
        int n = Integer.parseInt(args[0]);

        for (int i = -n; i <= n; i++) {
            for (int j = -n; j <= n; j++) {
                if (i*i <= j*j) System.out.print("* ");
                else            System.out.print(". ");
            }
            System.out.println();
        }
    }
}


Copyright © 2000–2022, Robert Sedgewick and Kevin Wayne.
Last updated: Thu Aug 11 10:12:31 EDT 2022.