大家都知道我们不管在学习任何一种程序语言的时候,运行的第一个程序是什吗?当然是输出“hello world”了,今天我来用C++输出hello world。
#include<iostream>
using namespace std;
int main()
{
cout << "hello world" << endl;//输出hello world字符
system("pause");
return 0;
}
除了输出语句那一句的话,其他的均为标准格式(无论写什么程序都要写入的)。
2.变量的定义:变量类型+变量名=变量初始值
int a=10;