public static void main(String[] args) {
// TODO Auto-generated method stub
int val=5;
for(int row = 1; row<=5; row ++ )
{
for(int col = 1; col<=row; col++)
{
System.out.print(val+" ");
}
System.out.println();
val--;
}
out put -
5
4 4
3 3 3
2 2 2 2
1 1 1 1 1
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)