格式化输出流 表一 std::cout << 3E10; //3e+10 --- std::cout << std::fixed; std::cout << 3E10; // 30000000000.000000 转义 表二