What is the output???
class sandy
{
public static void main(String[] args)
{
int row=5,i,j;
for(i=0;i=row;i++)
{
for(j=row;j=i;j--)
{
System.out.print("*");
}
System.out.println();
}
}
}


Posted on by