c++写helloworld
时间: 2023-11-11 21:05:31 浏览: 90
C++ HELLOWorld
4星 · 用户满意度95%
C++是一种高级编程语言,用于开发各种类型的应用程序。下面是三种不同的方法来编写C++中的helloworld程序:
1.使用iostream头文件和cout语句输出helloworld:
#include <iostream>
using namespace std;
int main() {
cout << "hello world" << endl;
return 0;
}
2.使用bits/stdc++.h头文件和cout语句输出helloworld:
#include<bits/stdc++.h>
using namespace std;
int main() {
cout << "hello world" << endl;
return 0;
}
3.使用iostream头文件和cout语句输出HELLOWORLD:
#include <iostream>
using namespace std;
int main() {
cout << "HELLOWORLD" << endl;
return 0;
}
以上三种方法都可以输出helloworld,其中第一种方法是最常见的方法,第二种方法使用了一个包含所有标准头文件的头文件,第三种方法输出的是大写字母的helloworld。
阅读全文