I need to get this output
*
* * *
* * * * *
please can some one help me by giving the codings..
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
I need to get this output
*
* * *
* * * * *
please can some one help me by giving the codings..
class Star{
}
class Space { private ArrayList<int, Star> stars = new ArrayList<int, Star>(); }
class Star {
public static void main (String [] args){
int a = Integer.parseInt(javax.swing.JOptionPane.showInput Dialog(null,"Insert Rows of Star:"));
for (int i=0;i<=a*2;i++){
if (i % 2 == 0){
continue;
}else{
for (int j=0;j<i;j++){
System.out.print ("*");
}
}
System.out.println ("");
}
}
}
Try this code, may be it can solved your problem.
madushankakurera (July 9th, 2010)
class Star{
public static void main (String args[]){
for(int i=0;i<5;++i){
for(int j=5;j>i;--j){
System.out.print(" ");
}
for(int j=1;j<=i;++j){
System.out.print("*");
}
for(int j=2;j<=i;++j){
System.out.print("*");
}
System.out.println();
}
}
}
i need to print in this form
1 2 3 4 5 6
3 5 7 9 11
8 12 16 20
i need program for this
Alas, after centuries of searching, I've finally found it...Sir spoon-feeder's treasure trove!
Please use [highlight=Java]//code goes here...[/highlight] tags when posting your code