Results 1 to 3 of 3
Thread: Java Asterisk Tree
- 10-12-2011, 03:18 AM #1
Member
- Join Date
- Oct 2011
- Posts
- 2
- Rep Power
- 0
Java Asterisk Tree
Hello, all; I'm currently trying to find a way to make an asterisk tree in Java using only nested while loops, if statements, and the like. I've already found a way to do it with for loops, but I'm required to only use while loops within the program. It needs to take user input of how large the tree should be (shich I use scanner for), and then have an output like this:
*
***
*****
*******
*********
***
***
***
I've persisted at the problem for a few days, and despite my being able to create a wedge of stars using while loops, I can't figure this one out. I don't want an explicit answer; just hints is fine, so that I may learn from this problem. Thank you all!
Here is my code.
Java Code:import java.util.Scanner; class JavaTree{ public static void main(String[] args){ Scanner scan = new Scanner(System.in); int ast, i=1, rows, spaces; System.out.println("How large should the tree be?"); rows = scan.nextInt(); spaces = rows; while (rows > 0){ while (spaces > 0){ System.out.print(" "); spaces--; } ast = 2*i-1; while (ast > 0){ System.out.print("*"); ast--; } i++; System.out.println(""); rows--; spaces = rows; } } }Last edited by Stratgtar565; 10-12-2011 at 05:27 AM.
- 10-12-2011, 03:19 AM #2
Member
- Join Date
- Oct 2011
- Posts
- 2
- Rep Power
- 0
Re: Java Asterisk Tree
Sorry, my post only shows half of the tree. There should be another side to it on the left that makes it symmetrical.
- 10-12-2011, 05:13 AM #3
Senior Member
- Join Date
- Jan 2011
- Location
- Rizal Province, Philippiines
- Posts
- 167
- Rep Power
- 0
Similar Threads
-
How to replace int with asterisk
By erin.ctm in forum New To JavaReplies: 3Last Post: 11-12-2010, 11:13 PM -
Using an asterisk to split a string.
By Cruncher in forum New To JavaReplies: 2Last Post: 06-13-2010, 03:12 PM -
Create an Asterisk Pattern in Java
By kaurpower in forum New To JavaReplies: 1Last Post: 03-17-2010, 01:00 AM -
asterisk java
By abhi in forum New To JavaReplies: 4Last Post: 01-22-2008, 07:09 AM -
Asterisk-Java 0.3
By JavaBean in forum Java SoftwareReplies: 0Last Post: 07-02-2007, 08:30 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks