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

📄 list1714.cpp

📁 teach yourself C++ in 21 days 第五版
💻 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 + -