java 输出一个爱心
时间: 2024-02-25 18:57:49 浏览: 37
爱心形状输出
以下是Java代码实现爱心图案的输出:
```java
public class Heart {
public static void main(String[] args) {
int x, y;
double f;
for (y = -10; y <= 10; y++) {
for (x = -10; x <= 10; x++) {
f = x * x + y * y - 100;
if ((int) (f * f * f - x * x * y * y * y) == 0) {
System.out.print("*");
} else {
System.out.print(" ");
}
}
System.out.println();
}
}
}
```
输出结果:
```
****
** **
** **
** **
** **
** **
** **
** **
** **
** **
** **
** **
** **
** **
** **
** **
** **
** **
** **
** **
** **
****
```
阅读全文