⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 4elist1714.cpp

📁 《21天学通C++》附盘的原代码。书上的每个例子在这里都有相应的C语言程序。
💻 CPP
字号:
// Listing 17.14 - Using setf
#include <iostream>
#include <iomanip>
using namespace std;

int main()
{
	const int number = 185;
	cout << "The number is " << number << endl;

	cout << "The number is " << hex <<  number << endl;

	cout.setf(ios::showbase);
	cout << "The number is " << hex <<  number << endl;

	cout << "The number is " ;
	cout.width(10);
	cout << hex << number << endl;

	cout << "The number is " ;
	cout.width(10);
	cout.setf(ios::left);
	cout << hex << number << endl;

	cout << "The number is " ;
	cout.width(10);
	cout.setf(ios::internal);
	cout << hex << number << endl;

	cout << "The number is:" << setw(10) << hex << number << endl;
	return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -