タグ付けされた質問 「iostream」

C ++ iostreamライブラリは、ストリームを使用して入出力機能を提供するオブジェクト指向ライブラリです。iostreamsクラスは、組み込み型のタイプセーフなI / Oをサポートし、>>および<<演算子をオーバーロードすることにより、ユーザー定義型をサポートするように拡張できます。

4
入力を読み取った後、なぜcin.clear()とcin.ignore()を呼び出すのでしょうか。
Google CodeUniversityのC ++チュートリアルには、次のコードが含まれていました。 // Description: Illustrate the use of cin to get input // and how to recover from errors. #include &lt;iostream&gt; using namespace std; int main() { int input_var = 0; // Enter the do while loop and stay there until either // a non-numeric is entered, or -1 …
86 c++  input  iostream  cin 

3
CとC ++のほぼ同一のコード間の実行時間の大きな違い(x9)
私はwww.spoj.comからこの演習を解決しようとしていました:FCTRL-階乗 あなたは本当にそれを読む必要はありません、あなたが興味を持っているならそれを読んでください:) 最初に私はそれをC ++で実装しました(これが私の解決策です): #include &lt;iostream&gt; using namespace std; int main() { unsigned int num_of_inputs; unsigned int fact_num; unsigned int num_of_trailing_zeros; std::ios_base::sync_with_stdio(false); // turn off synchronization with the C library’s stdio buffers (from https://stackoverflow.com/a/22225421/5218277) cin &gt;&gt; num_of_inputs; while (num_of_inputs--) { cin &gt;&gt; fact_num; num_of_trailing_zeros = 0; for (unsigned int fives …
85 c++  c  performance  gcc  iostream 
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.