作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
代码
public static void main(String[] args) {
String text=JOptionPane.showInputDialog("Introduce height");
int height=Integer.parseInt(text);
drawInversePiramid(height);
}
public static void drawInversePiramid(int height){
for(int numberasterisks=(height*2)-1,numberspaces=0;numberasterisks>0;numberspaces++,numberasterisks-=2){
//we draw spaces
for(int i=0;i<numberspaces;i++){
System.out.println(" ");
}//we draw the asterisks
for(int j=0;j<numberasterisks;j++){
System.out.println("*");
}//to jump the line
System.out.println("");
}
}
我在正确编译金字塔时遇到了问题。相反,它只是打印一个带有正确数量星号的垂直图案。
最佳答案
除了一个小细节外,您的代码实际上是正确的。您到处都在调用 println
,它总是会打印到换行符。相反,只在每行的末尾调用 println
,但是当你想用星号和空格构建给定的行时只使用 print
。使用此版本的代码:
public static void drawInversePiramid(int height) {
for (int numberasterisks=(height*2)-1,numberspaces=0;numberasterisks>0;numberspaces++,numberasterisks-=2){
// we draw spaces
for (int i=0; I < numberspaces; i++) {
System.out.print(" ");
}
// we draw the asterisks
for (int j=0; j < numberasterisks; j++) {
System.out.print("*");
}
// to jump the line
System.out.println("");
}
}
drawInversePiramid(3);
我得到了正确的输出:
*****
***
*
关于java - 如何在Java中绘制带星号的倒金字塔,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50927111/
我是一名优秀的程序员,十分优秀!