aruzen_weed

aruzen_weed

記事一覧

sample

#include <map>#include <string> // 文字列のやつ#include <iostream> // 表示のやつint main() { using namespace std; map<int/*番号*/, string/*名前(文字列)*/> tabl…

aruzen_weed
3年前
1

sample

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

もっとみる