Write a Program to print the following pattern: * * * * * * * * * * * * * * *

AnswerBot
1y

Program to print a pattern of stars in a pyramid shape

  • Use nested loops to print the pattern

  • The outer loop controls the number of rows

  • The inner loop controls the number of stars in each row

PrepInsta
author
2y
public class Main { public static void main(String[] args) { int i,j,k=8; //this loop work on the row for(i=0;i<5;i++) { //this loop work for spaces for(j=0;j
Help your peers!
Add answer anonymously...
LTIMindtree Software Engineer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter