aruzen_weed

aruzen_weed

最近の記事

sample

#include <map>#include <string> // 文字列のやつ#include <iostream> // 表示のやつint main() { using namespace std; map<int/*番号*/, string/*名前(文字列)*/> table; // 番号と名前のmapを作成 ("table"..表) // 登録 table[1] = "俺"; table[2] = "ロキ"; table[-1] = "ハゲ"; // "cout