2008-05-22から1日間の記事一覧

入出力マニピュレータ

C++

フラグって残るのか…。 #include <iostream> #include <iomanip> using namespace std; int main() { cout << showbase << hex << 100 << endl; cout << 100 << endl; return 0; } 0x64 0x64</iomanip></iostream>

boolalpha

C++

boolってキーワードなんだなー。 #include <iostream> #include <iomanip> using namespace std; int main() { cout << boolalpha << true << endl; cout << boolalpha << 1 << endl; return 0; } true 1</iomanip></iostream>