作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我在垂直打印代码时遇到问题,无论我做什么,它都会继续水平打印。第一个图像是我的输出的样子,第二个图像是它应该的样子。
// pixel counter
for (y = 0; y < height; y++) {
for (x = 0; x < width; x++) {
pixelcounter [s.nextInt()/ binwidth] += 1;
}
}
// histogram
for (int q = 0; q < pixelcounter.length; q++) {
if (binmin < 10) {
System.out.print(" " + binmin + ":");
} else {
System.out.print(binmin + ":");
}
int num_stars = (int) ((((double) pixelcounter[q] * 100.0/ area)) + 0.5)
for (i = 0; i < num_stars; i++) {
System.out.print("*");
}
System.out.println();
binmin += binwidth;
}
最佳答案
您应该使用:
System.out.println(" " + binmin + ":");
如果您使用 System.out.print(""+ binmin + ":");
它将在同一行中打印所有内容。
将其更改为 println 将确保您的输出打印在单独的行上。
关于java - 如何让代码垂直打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39500527/
我是一名优秀的程序员,十分优秀!