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
How to do encapsulation in java?
What is the static keyword?
What java ide should I use?
What are java threads?
What is byte data type?
Why Java is not pure Object Oriented language?
Is null a keyword in java?
What is variable and example?
Explain the difference between collection api and stream api in java8?
What is a parameter in matrices?
What is a flag and how does it work?
Give the hierarchy of inputstream and outputstream classes.
What does snprintf return?
What restrictions are placed on method overriding?
What does java se mean?