c++编写hello World


代码1:

#include <iostream>
using namespace std;

int main(){
	cout << "helloworld" << endl;
	system("pause");
	return 0;
}

代码二:

#include <stdio.h>

int main() {
	printf("Hello World!");
	getchar();//防止窗口一闪而过
	return 0;
}

扩展阅读:

编写第一个c++程序总共分4步:

1:创建项目

2:创建文件

3:编写代码

4:运行程序

image.png

image.png

image.png