public class Solution23{
public static void main(String args[]) {
for(int i=1;i<=5;i++)
{
for(int j=i;j>=1;j--)
{
System.out.print(j);
}
System.out.println("");
}
}
}
public static void main(String args[]) {
for(int i=1;i<=5;i++)
{
for(int j=i;j>=1;j--)
{
System.out.print(j);
}
System.out.println("");
}
}
}
No comments:
Post a Comment