C++中iomaip库的setw()方法用于基于指定为该方法参数的宽度来设置ios库字段的宽度。
句法:
setw(int n)
参数:此方法接受n作为参数,它是要设置字段宽度所对应的整数参数。
返回值:此方法不返回任何内容。它仅充当流操纵器。
范例1:
// C++ code to demonstrate
// the working of setw() function
#include
#include
#include
using namespace std;
int main()
{
// Initializing the integer
int num = 50;
cout << "Before setting the width: \n"
<< num << endl;
// Using setw()
cout << "Setting the width"
<< " using setw to 5: \n"
<< setw(5);
cout << num << endl;
return 0;
}
输出:
Before setting the width:
50
Setting the width using setw to 5:
50
范例2:
// C++ code to demonstrate
// the working of setw() function
#include
#include
#include
using namespace std;
int main()
{
// Initializing the integer
int num = 50;
cout << "Before setting the width: \n"
<< num << endl;
// Using setw()
cout << "Setting the width"
<< " using setw to 10: \n"
<< setw(10);
cout << num << endl;
return 0;
}
输出:
Before setting the width:
50
Setting the width using setw to 10:
50
参考: http://www.cplusplus.com/reference/iomanip/setw/
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。