C++输出对齐(如何使输出对齐)
Posted Wecccccccc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++输出对齐(如何使输出对齐)相关的知识,希望对你有一定的参考价值。
代码如下:
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
cout << setw(15)<<std::left<<"unsigned int" << setw(15) << std::left<<sizeof(unsigned) << endl;
cout << setw(15) << std::left << "int" << setw(15) << std::left << sizeof(int) << endl;
cout << setw(15) << std::right<< "unsigned int" << setw(15) << std::right << sizeof(unsigned) << endl;
cout << setw(15) << std::right << "int" << setw(15) << std::right << sizeof(int) << endl;
return 0;
}
测试结果:
以上是关于C++输出对齐(如何使输出对齐)的主要内容,如果未能解决你的问题,请参考以下文章