import java.util.*;
public class Ch2Q33
{
public static void main(String[] args)
{
int n = 5;//n indicates number of lines
for(int i = 1; i <=n; i++)
{for(int j = 1; j <= i; j++)
System.out.print(" ");
for(int j = 1; j <= n-i+1; j++)
System.out.print("* ");
System.out.println();
}
}
}
/* __* * * * *
* ____* * * *
______* * * */
No comments:
Post a Comment