作者: 940752944 时间: 2016-7-2 21:54
class DengYao { public static void main(String[] args) { for (int i = 1; i <= 5; i++) { //先打印倒直角三角形,将星星换成空格 for (int j = 5; j >= i; j--) { System.out.print(" ");//输出的是一个空格。 } //现在打印直角三角形的星星 for (int j = 1; j <= i; j++) { System.out.print("* ");//注意*号的后面要加一个空格。 } System.out.println(); } } }作者: 夏:默秋凉 时间: 2016-7-2 22:42
public class demo5
{
public static void main(String[] args)
{
//嵌套循环边长为6的等边三角形
for (int x = 1;x<=6 ;x++ )
{
for (int y = x;y<=6 ;y++ )
{
System.out.print(" ");
}
for (int y = 1;y<=x ;y++ )
{
System.out.print("* ");
}
System.out.print("\n");
}
}