用c++输出hello world
时间: 2023-05-18 09:06:41 浏览: 93
可以使用以下代码来输出 "Hello World":
```c
#include <stdio.h>
int main() {
printf("Hello World\n");
return 0;
}
```
相关问题
使用c++语言输出helloworld
你好!以下是使用 C 语言输出 "Hello, World!" 的代码:
```
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}
```
希望能对你有所帮助!
C++输出hello world!
可以使用以下代码来输出 "hello world!":
```c++
#include <iostream>
int main() {
std::cout << "hello world!" << std::endl;
return 0;
}
```
或者使用以下代码:
```c++
#include <cstdio>
int main() {
printf("hello world!\n");
return 0;
}
```
两种方法都可以输出 "hello world!"。
阅读全文