用Java写出打印菱形的程序
时间: 2023-05-27 22:05:59 浏览: 146
以下是使用Java编写打印菱形的程序:
```java
import java.util.Scanner;
public class DiamondPattern {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter the number of rows for the diamond pattern: ");
int rows = scanner.nextInt();
scanner.close();
int spaces = rows-1;
int stars = 1;
for(int i=1; i<=2*rows-1; i++) {
for(int j=1; j<=spaces; j++) {
System.out.print(" ");
}
for(int j=1; j<=stars; j++) {
System.out.print("*");
}
System.out.println();
if(i<rows) {
spaces--;
stars += 2;
}
else {
spaces++;
stars -= 2;
}
}
}
}
```
此程序将提示用户输入菱形的行数,然后根据输入打印出菱形。程序使用嵌套循环来打印空格和星号,并根据输入计算每行的空格和星号数量。程序还使用条件语句来控制空格和星号的数量,从而打印出完整的菱形。
阅读全文