旧版课程,制作完成于2017-12-18
auto关键字
auto x=9;//根据赋值,确定x的类型
int y=9;
函数的提前声明
名字 返回值 参数类型
int add(int,int);
auto 自动确认某个变量的类型