nikhil sreeni

nikhil sreeni

  • NA
  • 40
  • 9.3k

Best logic for printing a specific pattern

May 31 2013 12:24 PM
how to print the below pattern using only one loop?

*
**
***
****
*****




for(int i=1;i<=5;i++)
{
for(int j=1;j<=i;j++)
{
print("*");
}
print("\n");
}
every one know this, but using only on loop how?
it's really an interview question.he asked me that he will ask next question after answering this.



Answers (2)