Computer Science, asked by moutushimunshi, 1 day ago

write the program in Java to display the pattern.
1 2 3 4 5
1 2 3 4
1 2 3
1 2
1​

Answers

Answered by nageswarraor842
0

Answer:

1

21

321

4321

54321

Explanation:

hence proved

Answered by ayushunk
0

public static void main(String[] args) {
for(int r=5;r>=1;r--)
{
for(int c=1;c<=r;c++)
{
System.out.print(c);
}
System.out.println();
}
}
}
Write a program to print the series of
Copyright © BCA Notes All Rights Reserved.
Similar questions