Old 11-27-2009, 02:32 PM   #1
dreamerp
Registered User
Simple Java question

Hey,

If you are using a nested loop to try to print an output like:

******
*****
****
***
**
*

How do you do this? I am confused because I can do it in the reversed order since it would count in order to 6 stars.

int lines, stars;
for (lines = 0; lines < 6; lines++)

for(stars = 0; stars<=lines; stars++)
System.out.print('*');

System.out.println();
}
dreamerp is offline   Reply With Quote

Sponsored Links (Guests Only) - Register | Need Help?
 

Old 11-27-2009, 04:02 PM   #2
Krilnon
≈ ≠ =
 
Krilnon's Avatar
Location Rochester, NY

Posts 7,183
Code:
int lines, stars;
for(lines = 6; lines > 0; lines--){
	for(stars = 0; stars < lines; stars++){
		System.out.print('*');
	}
	System.out.println();
}
Krilnon is offline   Reply With Quote
Old Today, 01:19 AM   #3
seomayuri
Registered User
Hai friend

I am very happy to Discuss with you

This is Forward loop
Code:
public class NewClass2 {
    public static void main(String args[])
    {
        int lines, stars;
        for (lines = 0; lines < 6; lines++)
        {
        for(stars = 0; stars<=lines; stars++)
        {
            System.out.print('*');
        }
        System.out.println();
        }
    }

}
This is Reverse Loop

Code:
public class NewClass2 {
    public static void main(String args[])
    {
        int lines, stars;
        for (lines =6; lines>0; lines--)
        {
        for(stars = 0; stars<lines; stars++)
        {
            System.out.print('*');
        }
        System.out.println();
        }
    }

}
Do you want more Examples - please click here http://javasefx.blogspot.com/

Web Design in India

__________________
Reg

http://www.mayuri.co.in/
seomayuri is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 06:17 PM.

SUPPORTERS:

kirupa.com's fast and reliable hosting provided by Media Temple. flash components
Creative web apps. Make your own free flash banners and photo slideshows.
Check out the great, high-quality flash extensions. Buy or sell stock flash, video, audio and fonts for as little as 50 cents at FlashDen.

Flash Transition Effects

Flash Effect Tutorials

Digicrafts Components
Flash effects. Art without coding. Upload, publish, deliver. Secure hosting for your professional or academic video, presentations & more. Screencast.com
Streamsolutions Content Delivery Networks Flipping Book - page flip flash component.
Flash-Gallery.com - Get your flash photo gallery (flash component or swf gallery Learn how to advertise on kirupa.com
 

cdn
content delivery network (cdn)

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd. Copyright 2010 - kirupa.com Copyright 2010 - kirupa.com