- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经编写了一段代码,使用 for 循环创建完美的三角力。我如何使用更多的 for 循环来从这些三角力中创建三角力?
注意:“ROptionPane”与“JOptionPane”相同
public static void main(String[] args) {
String rowsWantedAsSt = ROptionPane.showInputDialog(null, "How big would you like the Diamond to be?",
"Diamond", ROptionPane.QUESTION_MESSAGE);
int rowsWanted = Integer.parseInt(rowsWantedAsSt);
//stars on the top row
int starsWanted = 1;
//spaces on the top row
int spacesWanted = (rowsWanted * 2) + 3;
for (int rows = 0; rows < rowsWanted; rows++) {
for (int spaces = 0; spaces < spacesWanted; spaces++) {
System.out.print(" ");
}
for (int stars = 0; stars < starsWanted; stars++) {
System.out.print("*");
}
System.out.println();
starsWanted += 2;
spacesWanted--;
}
starsWanted = 1;
spacesWanted = rowsWanted + 1;
for (int rows = 0; rows < rowsWanted; rows++) {
for (int spaces = 0; spaces < spacesWanted + 2; spaces++) {
System.out.print(" ");
}
for (int stars = 0; stars < starsWanted; stars++) {
System.out.print("*");
}
for (double spaces = 0; spaces < (spacesWanted * 2) - 3; spaces++) {
System.out.print(" ");
}
for (int stars = 0; stars < starsWanted; stars++) {
System.out.print("*");
}
System.out.println();
starsWanted += 2;
spacesWanted--;
}
}
}
最佳答案
Triforce 与创建Sierpinski triangle 的算法第一次迭代的结果相同。 。由 Triforce 组成的 Triforce 看起来像是该算法的第二次迭代。
Rosettacode.org 有两个不同的 Java implementations迭代生成 ASCII Sierpinski 三角形的函数;您可能想从这里开始。
关于java - 用三角力量打造三角力量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20527870/
好吧,我正在考虑在我的应用程序中添加一个评分功能,成员可以在 1-5 之间投票(这是 $rating ),我显示的平均分数如 $score = $number_of_voters / $rating
我正在使用 javascript 和 html5 canvas 制作一个用户交互式轮子,滑动时会旋转轮子。不过,我正在尝试研究滑动的“力/功率” 计算这个的好公式是什么? 最佳答案 我认为这可能是一个
我一直想为我的游戏创建一个物理引擎,并决定我应该首先覆盖力量。我在 python 上使用 pygame 来完成此任务。 例如,我希望能够编写一个作用在物体上的一定大小的力。我一直想不出有什么方法可以做
这个问题在这里已经有了答案: Calculation error with pow operator (4 个答案) 关闭 6 年前。 为什么是什么时候: >> b = -1 >> b**2 1 但
我是一名优秀的程序员,十分优秀!