Etudes/BTS/C++/boolalpha.cpp

14 lines
255 B
C++
Raw Normal View History

2016-10-14 15:52:18 +00:00
#include <iostream>
using namespace std;
int main()
{
cout << true << " et " << false << endl;
cout << boolalpha;
cout << true << " et " << false << endl;
cout << noboolalpha;
cout << true << " et " << false << endl;
return 0;
}