帮我写一个图案是爱心的java代码
时间: 2023-03-27 22:05:18 浏览: 82
好的,以下是一个简单的爱心图案的 Java 代码:
```
public class HeartPattern {
public static void main(String[] args) {
int size = 10;
for (int row = ; row < size; row++) {
for (int col = ; col <= 4 * size; col++) {
double d1 = Math.sqrt(Math.pow(row - size, 2) + Math.pow(col - size, 2));
double d2 = Math.sqrt(Math.pow(row - size, 2) + Math.pow(col - 3 * size, 2));
if (d1 < size + .5 || d2 < size + .5) {
System.out.print("*");
} else {
System.out.print(" ");
}
}
System.out.print(System.lineSeparator());
}
}
}
```
这段代码可以在控制台中输出一个简单的爱心图案。希望对你有所帮助!
阅读全文