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.
Loading

VulpesPosted May 31, 2013, 1:02 PM
Saroj ManikPosted Jun 16, 2015, 3:55 AM