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.
既存のプログラムがあり、それを変更できません。std::cinユーザーの入力を読み取るために使用します。
std::cin
毎回入力したくないので、次のようなファイルを作成します。
3 2 2 3 4 5 1
このファイルを入力ストリームとして使用するにはどうすればよいですか? OS Xを使用しています。
bash (または同様の) シェルを使用していて、入力がファイルにあるinput.in場合
input.in
myprogram < input.in
プログラムへの標準入力として input.in を使用します。