如何编写hello world程序
时间: 2023-09-14 20:02:36 浏览: 95
编写 hello world web 程序
你可以在任何编程语言中编写 Hello World 程序,以下是 Python 和 C++ 两种语言的 Hello World 程序示例:
Python:
```python
print("Hello World!")
```
C++:
```c++
#include <iostream>
int main() {
std::cout << "Hello World!" << std::endl;
return 0;
}
```
阅读全文