生成一个java爱心代码
时间: 2023-10-12 14:13:22 浏览: 86
以下是一个简单的 Java 爱心代码:
```
public class Heart {
public static void main(String[] args) {
int x, y, size = 10;
double a;
for (y = size; y >= -size; y--) {
for (x = -size; x <= size; x++) {
a = x * x + y * y - size * size;
if (a * a * a - x * x * y * y * y <= 0) {
System.out.print("*");
} else {
System.out.print(" ");
}
}
System.out.println();
}
}
}
```
运行后会输出一个爱心形状。
相关问题
生成一个爱心的Java代码
可以,以下是生成爱心的Java代码:
public class Heart {
public static void main(String[] args) {
double x, y, size;
for (y = 1.5; y > -1.5; y -= 0.1) {
for (x = -1.5; x < 1.5; x += 0.05) {
size = x * x + y * y - 1;
System.out.print(size * size * size - x * x * y * y * y <= 0.0 ? "❤️" : " ");
}
System.out.println();
}
}
}
运行后可以看到一个用字符生成的爱心形状。
用java代码生成一个爱心
好的,以下是用Java代码生成一个爱心的方法:
```java
public class LoveHeart {
public static void main(String[] args) {
int width = 20;
int height = 20;
int[][] matrix = new int[height][width];
for (int i = 0; i < height; i++) {
for (int j = 0; j < width; j++) {
if (((i < height / 4) && (j % 3 == 0 || j % 3 == 2))
|| ((i >= height / 4) && (i < (height / 2) - 2) && (j % 3 != 0 && j % 3 != 2))
|| ((i >= (height / 2) - 2) && (i < (height / 2)) && (j == 1 || j == width - 2))
|| ((i >= (height / 2)) && (i < (height / 2) + 3) && (j == 2 || j == width - 3))
|| ((i >= (height / 2) + 3) && (i < height - 2) && ((j == 1 && i % 3 != 0) || (j == width - 2 && i % 3 == 0))))
{
matrix[i][j] = 1;
} else {
matrix[i][j] = 0;
}
}
}
for (int i = 0; i < height; i++) {
for (int j = 0; j < width; j++) {
if (matrix[i][j] == 1) {
System.out.print("* ");
} else {
System.out.print(" ");
}
}
System.out.println();
}
}
}
```
运行上述代码,即可在控制台中生成一个爱心。
阅读全文