学习c++第二课-C++程序结构
一、C++结构
二、头文件
以下是小编查到的一些c++头文件
#include <algorithm> //STL通用算法
#include <bitset> //STL位集容器
#include <cctype>
#include <cerrno>
#include <clocale>
#include <cmath>
#include <complex> //复数类
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <deque> //STL双端队列容器
#include <exception> //异常处理类
#include <fstream>
#include <functional> //STL定义运算函数(代替运算符)
#include <limits>
#include <list> //STL线性列表容器
#include <map> //STL 映射容器
#include <iomanip>
#include <ios> //基本输入/输出支持
#include<iosfwd> //输入/输出系统使用的前置声明
#include <iostream>
#include <istream> //基本输入流
#include <ostream> //基本输出流
#include <queue> //STL队列容器
#include <set> //STL 集合容器
#include <sstream> //基于字符串的流
#include <stack> //STL堆栈容器
#include <stdexcept> //标准异常类
#include <streambuf> //底层输入/输出支持
#include <string> //字符串类
#include <utility> //STL通用模板类
#include <vector> //STL动态数组容器
#include <cwchar>
#include <cwctype>
#include <iostream>
#include <string>
#include <cstring>
#include <queue>
#include <stack>
C99 增加
#include <complex.h> //复数处理
#include <fenv.h> //浮点环境
#include <inttypes.h> //整数格式转换
#include <stdbool.h> //布尔环境
#include <stdint.h> //整型环境
#include <tgmath.h> //通用类型数学宏
万能头文件
#include <bits/stdc++.h> //这是C++的万能头文件,但竞赛时一般不能用
三、主函数
主函数里的“return 0;”是指程序结束,上面写的是头文件里的指令,比如:输入(cin>>)、输出(cout<<)等等,如果定义的不
头文件里的,会有以下结果!
总结
今天我们讲解了c++的结构,头文件及主函数,明天我们将正式进入代码学习,希望各位小伙伴们点赞、关注、评论加转发哦,拜拜!