c++ primer 第五版 阅读笔记二

第二章 开始学习C++ 知识点提炼: 1. C++ 对大小写敏感。 2. 文件扩展名cpp是一种表示C++ 程序的常用方式。 3. C++ 的输入输出: ① 输入:cin>>x;输出:cout<<x;头文件:#include  <iostream> ② 输入:scanf("%d",&x);输出:printf("%d",x);头文件:#include <stdio.h> 4. main() 函数 函
相关文章
相关标签/搜索