C/C++笔试头文件输入输出等细节问题

该博客记录一些小知识点,以备复习,逐渐补充...

 


1.万能头文件:

    #include包含了目前c++所包含的所有头文件!!!基本上所有的代码只要用了这个头文件就不再写其他头文件了。

2.头文件

    【1】https://blog.csdn.net/FX677588/article/details/52957601

3.位操作

    【1】https://blog.csdn.net/xiaopihaierletian/article/details/78162863

    【2】

4.C++ double 输出精度问题,保留几位小数。

#include
#include
using namespace std;
int main()
{
    double a=3.1415;
    cout<

 

你可能感兴趣的:(C/C++笔试细节知识点总结)