14 lines
255 B
C++
14 lines
255 B
C++
|
#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;
|
||
|
}
|