+ 1
Pattern
1 21 321 4321 54321
4 Answers
+ 7
what is the question??
+ 6
Python is so much simpler
https://code.sololearn.com/cPZIAp6FcBas/?ref=app
+ 6
public class Program
{
public static void main(String[] args) {
for(int j=1;j<=5;j++)
{
for(int k=j;k>=1;k--)
{
System.out.print(k);
}
System.out.println("");
}
}
}