编程实现输出结果1**2**3#
时间: 2023-12-31 17:05:18 浏览: 96
以下是一个Java程序,用于实现输出结果1**2**3#的效果:
```java
public class Picture {
public static void main(String[] args) {
int a, b, c;
for (a = 1; a <= 3; a++) {
for (b = 1; b <= a; b++) {
System.out.print(b);
}
for (c = 1; c <= 2 * (3 - a); c++) {
System.out.print("*");
}
System.out.print("#");
}
}
}
```
输出结果为:1**2**3#
阅读全文