Output?? Helpp | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Output?? Helpp

I want to output this : * ** *** **** ***** but it outputs this: * * * * * * * * * * * * * * * Code: int i=1; while(i<=5){ int j=1; while(j<=i){ System.out.println("* "); j++; } System.out.println(); i++; }

27th Apr 2020, 10:57 AM
Angel Halili
Angel Halili - avatar
1 Answer
+ 6
Remove "ln" from 1st print statement System.out.println("* "); Rewrite it as System.out.print("* ");
27th Apr 2020, 10:58 AM
...