C++
```cpp
include int main() { std::cout << "我爱你" << std::endl; return 0; } ``` ```python print("我爱你") ``` ```java public class HelloWorld { public static void main(String[] args) { System.out.println("我爱你"); } } ``` ```javascript console.log("我爱你"); ``` ```csharp using System; class Program { static void Main() { Console.WriteLine("我爱你"); } } ``` ```ruby puts "我爱你" ``` ```php <?php echo "我爱你"; ?> ``` ```go package main import "fmt" func main() { fmt.Println("我爱你") } ``` 这些示例展示了如何使用不同的编程语言来输出“我爱你”这个字符串。你可以根据自己的喜好和需求选择合适的编程语言来实现。Python
Java
JavaScript
C
Ruby
PHP
Go