
e d c b a
d c b a
c b a
code for this pattern

Here is a code that displays the following pattern:
e d c b a
d c b a
c b a
b a
a
public class Pattern{
public static void main(String[]args){
int i, j, k, m;
for (i = 0; i <5; i++){
for (j = 1; j <=i; j++)
{
System.out.print(" ");
}
for(j=101-i; j>=97; j--)
{
System.out.print((char)j);
}
System.out.println();
}
}
}