java 编写爱心代码
时间: 2023-11-16 18:00:27 浏览: 96
好的,以下是Java编写爱心代码的示例:
```
public class Heart {
public static void main(String[] args) {
double x, y, size;
char[][] heart = new char[30][30];
for (int i = 0; i < heart.length; i++) {
for (int j = 0; j < heart[i].length; j++) {
heart[i][j] = ' ';
}
}
for (double i = 0; i < 2 * Math.PI; i += 0.01) {
for (double j = 0; j < 2 * Math.PI; j += 0.01) {
x = 16 * Math.pow(Math.sin(i), 3);
y = 13 * Math.cos(j) - 5 * Math.cos(2 * j) - 2 * Math.cos(3 * j) - Math.cos(4 * j);
size = (x * x + y * y) / 200;
int row = (int) (y / size + heart.length / 2);
int col = (int) (x / size + heart[0].length / 2);
if (row >= 0 && row < heart.length && col >= 0 && col < heart[0].length) {
heart[row][col] = '*';
}
}
}
for (int i = 0; i < heart.length; i++) {
for (int j = 0; j < heart[i].length; j++) {
System.out.print(heart[i][j]);
}
System.out.println();
}
}
}
```
这段代码使用了数学函数来绘制一个爱心图案,并将其输出到控制台上。你可以直接运行这段代码,或者将其复制到你的Java开发环境中进行调试和修改。
阅读全文