Program to print 1
1 2
1 2 3
1 2 3 4 like that
Answer Posted / subash chandra bose l
class Tri
{
public static void main(String args[])
{
int i,j,k,sp=30;
for(i=1;i<=5;i++)
{
for(k=0;k<sp;k++)
{
System.out.println(" ");
}
sp=sp-2;
for(j=1;j<=i;j++)
{
System.out.println(" "+j);
}
}
}
}
this will print up to 5 rows and if u want more rows to be
printed you can increase the i<=n where n may be the number
of rows you want to print.
| Is This Answer Correct ? | 3 Yes | 7 No |
Post New Answer View All Answers
Why do we use predicate in java?
Explain the available thread states in a high-level?
What is static data type in java?
What is your platform’s default character encoding?
What is the parse method in java?
Is object a data type in java?
how to know the total memory occupied by the objects in the ArrayList(Array list may contain duplicate objects)
When will we use them?
Is stringwriter thread safe?
What does java se mean?
extending thread class or implementing runnable interface. Which is better? : Java thread
Can we extend singleton class in java?
Can you make a constructor final?
I want to control database connections in my program and want that only one thread should be able to make database connection at a time. How can I implement this logic?
Why inputstreamreader is used in java?