使用Python和turtle库
```python
import turtle
def draw_heart(x, y, size):
turtle.penup()
turtle.goto(x, y)
turtle.pendown()
turtle.begin_fill()
turtle.left(140)
turtle.forward(224 * size)
for i in range(200):
turtle.right(1)
turtle.forward(2 * size)
turtle.left(120)
for i in range(200):
turtle.right(1)
turtle.forward(2 * size)
turtle.forward(224 * size)
turtle.end_fill()
示例用法
draw_heart(0, 0, 1)
turtle.done()
```
使用Python和turtle库(简化版)
```python
from turtle import *
def draw_heart():
penup()
goto(0, -100)
pendown()
color('red')
begin_fill()
setheading(150)
circle(200, 90)
left(90)
circle(200, 90)
end_fill()
hideturtle()
draw_heart()
done()
```
使用C语言和ASCII字符
```c
include
int main() {
int i, j, n = 100; // 心形的大小
for (i = 0; i <= 2 * n; i++) {
for (j = 0; j <= 2 * n; j++) {
if ((n - i) * (n - i) + (n - j) * (n - j) < n * n) {
printf("* ");
} else {
printf(" ");
}
}
printf("\n");
}
return 0;
}
```
使用Python和matplotlib库
```python
import numpy as np
import matplotlib.pyplot as plt
t = np.linspace(0, 2 * np.pi, 1000)
x = 16 * np.sin(t)3
y = 13 * np.cos(t) - 5 * np.cos(2*t) - 2 * np.cos(3*t) - np.cos(4*t)
plt.figure(figsize=(8, 6))
plt.plot(x, y, color='red')
plt.fill(x, y, color='red', alpha=0.6)
plt.title('Python', fontsize=18)
plt.axis('equal')
plt.grid(True)
plt.show()
```
使用JavaScript和HTML5 Canvas
```html