Python
```python
def express_love():
heart = '''
我 喜 欢 你
* * * * *
* * * * * *
'''
print(heart)
express_love()
```
C语言
```c
include
int main() {
printf("我喜欢你!\n");
getch();
return 0;
}
```
Java
```java
public class LoveMessage {
public static void main(String[] args) {
System.out.println("我喜欢你!");
}
}
```
JavaScript
```javascript
function expressLove() {
const heart = `
我 喜 欢 你
* * * * *
* * * * * *
`;
console.log(heart);
}
expressLove();
```
C++
```cpp
include
int main() {
std::cout << "我喜欢你!" << std::endl;
std::cin.get();
return 0;
}
```
这些代码示例展示了如何用不同的编程语言编写简单的表白代码。你可以根据自己的喜好和编程环境选择合适的语言来实现。