作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我想打印这个图案:
*******
******
*****
****
***
**
*
到目前为止,这是我的代码:
import java.util.*;
public class DO
{
public static void main(String[] args)
{
final int BASE_SIZE = 8;
for (int r = 0; r < BASE_SIZE; r++)
{
for (int c = 0; c < (r + 1); c++)
{
System.out.print("*");
}
System.out.println();
}
}
我怎样才能反转我当前打印的图案,这样我才能得到我刚才给你看的那个?
最佳答案
我会用 StringBuilder
来实现它.从最长的一行开始,循环减去一个字符,直到 StringBuilder
为空。有点像
StringBuilder sb = new StringBuilder("*******");
while (sb.length() > 0) {
System.out.println(sb);
sb.setLength(sb.length() - 1);
}
关于java - 我如何在 Java 中反转这种模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29293207/
我是一名优秀的程序员,十分优秀!