Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
配列を作成し、ユーザーが何を入力しても、個々の文字と数字が配列に入れられるようにしたいと思います。例えば:
キーボード入力: ハクナ・マタタ
次のような配列が得られます。
{'H','a','k','u','n','a',' ',' 'M','a','t','a','t','a', ...}
これをコーディングするにはどうすればよいですか?
それは文字列を介して行われます:
std::string s; std::cin >> s; std::copy(s.begin(), s.end(), std::ostream_iterator<char>(std::cout, " ");
出力:
ハクナマタタ