Q:

Java - String Pyramid Program

0

This Program is used to display the String Pyramid Program.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

/* Pyramid Program */

class alpha
{
public static void main(String arg[])
{
char al[] = {'s','e','n','t','h','i','l'};

for(int i=0;i<=6;i++)
{
for(int j=0;j<=i;j++)
{
System.out.print(al[j]);
}
System.out.println();
}
}
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now