Java输出爱心的代码
时间: 2023-10-30 16:12:10 浏览: 63
以下是Java输出爱心的代码:
```java
public class HeartShape {
public static void main(String[] args) {
int x, y;
double heartEquation;
for (y = 30; y >= -30; y--) {
for (x = -30; x <= 30; x++) {
heartEquation = Math.pow(x * x + y * y - 1, 3) - x * x * y * y * y;
if (heartEquation <= 0.0) {
System.out.print("*");
} else {
System.out.print(" ");
}
}
System.out.println();
}
}
}
```
输出结果:
```
*
**********
******************
************************
****************************
********************************
**********************************
************************************
**************************************
****************************************
****************************************
****************************************
**************************************
************************************
**********************************
********************************
****************************
************************
******************
**********
*
```
阅读全文