c++写一个helloworld
时间: 2023-09-15 09:20:22 浏览: 88
Sure, here's a simple C program that prints "Hello, world!" on the screen:
#include <stdio.h>
int main() {
printf("Hello, world!");
return 0;
}
Hope that helps!
相关问题
用C++写一个hello world
当然可以,以下是一个简单的C++程序,可以输出“Hello, World!”:
```cpp
#include <iostream>
using namespace std;
int main() {
cout << "Hello, World!";
return 0;
}
```
您可以将此代码复制到C++编译器中运行,它将在控制台上输出“Hello, World!”。
写一个Hello world C++程序
以下是一个简单的 Hello world C++ 程序:
```c++
#include <iostream>
int main() {
std::cout << "Hello world!" << std::endl;
return 0;
}
```
在执行该程序后,你将在控制台上看到输出 "Hello world!"。
阅读全文