put输出hello world
时间: 2023-06-27 09:04:15 浏览: 76
用C语言写的输出hello world源代码.zip
在Python中使用print函数输出hello world:
```python
print("hello world")
```
在C++中使用cout输出hello world:
```c++
#include <iostream>
using namespace std;
int main() {
cout << "hello world" << endl;
return 0;
}
```
在Java中使用System.out.println输出hello world:
```java
public class HelloWorld {
public static void main(String[] args) {
System.out.println("hello world");
}
}
```
阅读全文