Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在处理代码,但我唯一能在输出中得到的是一个带有我输入的单词的框。例如,我需要输入单词“hippo”来制作这个形状
这就是我到目前为止在 for 循环中所做的。
for(int i = length; i > 0 ; i--) { out.println(word); }
我需要帮助。
在我的脑海中,循环看起来像这样。-
for(int i = length - 1; i >= 0 ; i --) { System.out.println(word.substring(0, i)); }