Results 1 to 3 of 3
-
9th Jan 2012, 01:34 PM #1OPMemberWebsite's:
downloadgroup.netplease help me in java
i want print following patterns in java please help me
shanshayan Reviewed by shanshayan on . please help me in java i want print following patterns in java please help me http://s19.postimage.org/qjjuudaoj/09012012337.jpg first one i know but i don't know how to change other patterns Rating: 5
-
9th Jan 2012, 07:52 PM #2Respected Member
Work off these:
Code:class nested1 { public static void main (String[] args) throws java.lang.Exception { int row=1; int col=0; char ast='*'; // Declare and initialize loop counter while (row < 6) { // Test and Loop System.out.println(row); col=0; while (col<row) { System.out.print(ast); col++; } System.out.println(); row++; // Increment Loop Counter } System.out.println(); // Finish the line } } * ** *** **** ***** class nested1 { public static void main (String[] args) throws java.lang.Exception { int row=1; int col=0; char ast='*'; // Declare and initialize loop counter while (row < 6) { // Test and Loop col=6; while (col>row) { System.out.print(ast); col--; } System.out.println(); row++; // Increment Loop Counter } } } ***** **** *** ** * class nested1 { public static void main (String[] args) throws java.lang.Exception { int row=1; int col1=0; int col2=0; int ctr=1; while (row < 8) { if (row<5) { col1=5-row; col2=3+row; } else { col1=row-3; col2=11-row; } ctr=1; while(ctr<8) { if (col1==ctr || col2==ctr) { System.out.print('*'); ctr++; } else { System.out.print(' '); ctr++; } } System.out.println(); row++; // Increment Loop Counter } } } * * * * * * * * * * * *
-
10th Jan 2012, 06:48 AM #3OPMemberWebsite's:
downloadgroup.netplease help fifth one(e)
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Java stinks: Turn off your Java browser plugin
By Loget in forum General DiscussionReplies: 37Last Post: 5th Sep 2012, 07:40 AM -
Need help in JAVA
By digimon in forum Web Development AreaReplies: 10Last Post: 20th Jan 2012, 04:53 AM -
HELP: Java countdown
By CuraHack in forum Web Development AreaReplies: 4Last Post: 9th Nov 2011, 02:42 AM -
In need of JAVA Developer
By avngr in forum Web Development AreaReplies: 2Last Post: 1st Sep 2011, 02:44 PM -
Some help need in Java programing
By bapi21 in forum Web Development AreaReplies: 1Last Post: 10th Jul 2011, 01:08 PM
themaPoster - post to forums and...
Version 5.22 released. Open older version (or...