
what is the code for printing stars as follows
* * *
* * *
* * * *print("code sample");

Hi Friend,
Try this:
public class PatternExample {
public static void main(String[] args) {
int num=4;
int p = num;
int q = 0;
for (int i = 0; i <= num; i++) {
for (int j = p; j>= 1; j-- )
System.out.print(" ");
p-=1;
for (int k = 1; k <= i; k++)
System.out.print ("* ");
System.out.println();
}
}
}
Thanks
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.