提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档
C++ 是一种高级语言,它是由 Bjarne Stroustrup 于 1979 年在贝尔实验室开始设计开发的。C++ 进一步扩充和完善了 C 语言,是一种面向对象的程序设计语言。C++ 可运行于多种平台上,如 Windows、MAC 操作系统以及 UNIX 的各种版本。
补充:世界上第一台计算机ENIAC诞生于1946年2月14日的美国宾夕法尼亚大学(NOIP会考)
#include <iostream> //声明头文件
using namespace std; //使用标准名空间
int main() { //主函数是程序的入口
cout << "Hello World!" << endl;
return 0; //函数返回值为0
}
cout << 项目1 << 项目2 << ... << 项目n;
如果项目是表达式,则输出表达式的值
cout << 1 + 3; //输出结果为4
如果项目加双引号(字符串),则输出双引号内的内容。
cout << "Hello World" //输出结果为Hello World
代码如下:
#include <iostream>
using namespace std;
int main() {
cout << " *" << endl;
cout << " ***" << endl;
cout << " *****" << endl;
cout << "*******" << endl;
return 0;
}
代码如下:
#include <iostream>
using namespace std;
int main() {
cout << "*******" << endl;
cout << " *****" << endl;
cout << " ***" << endl;
cout << " *" << endl;
cout << " ***" << endl;
cout << " *****" << endl;
cout << "*******" << endl;
return 0;
}
代码如下:
#include <iostream>
using namespace std;
int main() {
cout << 99 + 99 << endl;
cout << 99 * 99 << endl;
return 0;
}
cout中的换行语句是endl
可以用以下代码实现
cout << endl;
也可以换成\n
cout << "\n";