?? io20_9.02.c
字號:
#include <iostream>
/**
** not executed: standard library with boolalpha not available
**
**/
int main()
{
bool illustrate = true;
cout << "bool object illustrate set to true: "
// changes state of cout to print bool values
// using the strings true and false.
<< boolalpha
<< illustrate << endl;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -