经典的面试题,倒着的*三角
编程输出如下图形:* * * * ** * * ** * ** **
int i =0;for (;i<5; i++) {for (int j = i; j <5; j++) {System.out.print("*");}System.out.println();}