java 用love输出爱心形状
时间: 2024-02-19 19:58:15 浏览: 133
爱心形状输出
好的,以下是 Java 代码实现:
```java
public class Love {
public static void main(String[] args) {
int size = 10;
for (int y = size; y >= -size; --y) {
for (int x = -size; x <= size; ++x) {
if (Math.pow(Math.pow(x * 0.04, 2) + Math.pow(y * 0.1, 2) - 1, 3) - Math.pow(x * 0.04, 2) * Math.pow(y * 0.1, 3) <= 0) {
System.out.print("* ");
} else {
System.out.print(" ");
}
}
System.out.println();
}
}
}
```
运行该程序即可在控制台输出一个爱心形状。
阅读全文