スポンサーリンク
Visual C++ 向けサンプルコード
#include <iostream> int main( ) { using namespace std; int j = 10; cout << dec << j << noshowbase << endl; cout << hex << j << noshowbase << endl; cout << oct << j << noshowbase << endl; }
[Visual C++ サンプルコード | 即戦力ソース集に戻る]
本サンプルコードではエラー処理を省略している場合があります。実践で使用する場合はエラー処理が必要となる場合があります。