我想用一个字符串创建一个循环,以便在每个连续循环中,不会显示上一行的最后一个字符和第一个字符。我还尝试在每行旁边打印每个循环的长度。它看起来像一个倒置的金字塔。
我有这个:
for(int scounter = fullName.length(); scounter > 0; scounter--)
for (String name : fullName)
for(int counter = 0; counter < fullName.length(); counter++)
System.out.println(scounter + "[ " + fullName.substring(0, fullName.length() counter)+ " ]");
它打印如下内容:
24******
24****
24**
24*
然而,我正在寻找类似的东西:
7*******
5*****
4***
1*