io20_9.03.c

来自「C++ Primer(第三版)的随书源代码」· C语言 代码 · 共 19 行

C
19
字号
#include <iostream>

/**
 ** not executed: standard library with boolalpha not available
 **
 **/

int main()
{
    bool illustrate = true;

    cout << "bool object illustrate: "
         << illustrate << '\n'
         << "with boolalpha applied: "
         << boolalpha 
	 << illustrate << endl;
}

⌨️ 快捷键说明

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