命名空间
- 所有的标准C++标准库都封装在std命名空间中
include<iostream.h>
相当于:#include<iostread> using namespace std;
C++输出格式控制
void test()
{
cout << dec << 15 << endl; // 10f进制输出
cout << oct << 15 << endl; // 8进制输出
cout << hex << 15 << endl; // 16进制输出
cout << "hello world" // 将好几行一块输出
" i am chinese"
" i love china" << endl;
}
标签:std,cout,思想,编程,C++,命名,include
From: https://www.cnblogs.com/kxwslmsps/p/17144060.html