C++中setfill,setw,setbase,setprecision的作用

C++中setfill,setw,setbase,setprecision 函数用来控制输出格式的操纵符。

使用的时候需要引入:#include

具体的功能:

std::setfill:设置std::setw将填充什么样的字符 如:std::setfill('*'),默认情况下,填充字符是空格(’ ')

std::setw :需要填充多少个字符,默认填充的字符为' '空格

std::setbase(n):将输出数据转换为n进制

std::setprecision():控制输出流显示浮点数的数字个数,C++默认的流输出数值有效位是6。

demo熟悉下

填充x ,设置总的长度为8

setfill 和 setw

#include 
#include 
#include 
using namespace std;

int main() 
{
    int num =12;
    cout << setfill('x') << setw(8) << num <

setbase

#include 
#include 
#include 
using namespace std;

int main() 
{
    int num =12;
    //打印8进制
    cout << setbase(8) << num <

setprecision

#include 
#include 
#include 
using namespace std;

int main() 
{
    double num =3.1415926;
    //保留1位数
    cout << setprecision(1) << num <

你可能感兴趣的:(C++,c++,开发语言)