要用计算机代码表达“我爱你”,你可以选择不同的编程语言来实现。以下是几种常见编程语言的示例代码:
Python:
```python
print("我爱你")
```
C语言:
```c
include int main() { printf("我爱你\n"); return 0; } ``` Java: ```java System.out.println("我爱你"); ``` JavaScript: ```javascript alert("我爱你"); // 或者 document.write("我爱你"); ``` C++: ```cpp include int main() { std::cout << "我爱你" << std::endl; return 0; } ``` PHP: ```php echo "我爱你"; ``` Ruby: ```ruby puts "我爱你" ``` Go语言: ```go package main import "fmt" func main() { fmt.Println("我爱你") } ``` Swift: ```swift print("我爱你") ``` Rust: ```rust fn main() { println!("我爱你"); } ``` 这些代码示例可以在不同的编程环境中运行,输出“我爱你”这个字符串。你可以根据自己的喜好和需求选择合适的编程语言来实现这个简单的任务。