logo

Kas ir iekļaut iostream valodā C++

Lai veiktu jebkādas ievades un izvades darbības programmā C++, mums ir jāizmanto iostream galvenes faili. Bez galvenes faila mēs nevaram saņemt ievadi no lietotāja vai izdrukāt nekādu izvadi.

Galvenes faila sintakse:

 #include #include 'iostream.h' 

Iostream galvenes failā ir divu veidu straumes

1. Ievades straume : Lai saņemtu jebkuru ievadi no lietotāja, mums ir jāizmanto cin, kas pieder ievades straumei

Sintakse ievades straumes izmantošanai:

 std::cin>>variable_name 

Kad cin tiek izpildīts, kursors tiks apturēts pie konkrētā priekšraksta, līdz tiks ievadīta vērtība. Ievadītā vērtība tiks saglabāta mainīgajā.

2. Izvades straume : Lai izdrukātu izvadi, mēs izmantojam iebūvētās funkcijas cout izvades straumē

Sintakse vārdam cout

 std::cout&lt;<variable_name < pre> <p>When cout is executed, the value in the variable will be printed.</p> <h3>Different operations in iostream</h3> <p> <strong>1. Cin</strong> </p> <p>Using cin, we can take input from the user and store the value in the variable. We need to use the cin keyword followed by &gt;&gt; and the variable name.</p> <p> <strong>Syntax:</strong> </p> <pre> std::cin&gt;&gt;variable_name </pre> <p>To use cin, we need to use <strong>#include </strong> as cin belongs to this header file, and without this, an error will occur.</p> <p> <strong>Example code for cin:</strong> </p> <pre> //using header file iostream #include using namespace std; int main() { string name; //cin declaration cin &gt;&gt; name; return 0; } </pre> <p> <strong>Output:</strong> </p> <img src="//techcodeview.com/img/c-tutorial/23/what-is-include-iostream-c.webp" alt="What is include iostream in C++"> <p> <strong>Explanation:</strong> </p> <p>In the above code, we used cin to take the input, so to use cin, we included header file. When the input is taken, the string input is stored in the name variable.</p> <p> <strong>2. Cout</strong> </p> <p>To print the output, we need to use the cout keyword, which belongs to the iostream header file. To use cout, we need to use the cout keyword followed by &lt;&lt; and variable or the statement to print the output.</p> <p>The syntax for using cout:</p> <pre> std::cout&lt;<variable_name < pre> <p> <strong>Example of using cout:</strong> </p> <pre> //to use the cout statement, we need to use the iostream header file #include using namespace std; int main() { //cout statement is used here to print the statement cout &lt;&lt; &apos;Hi from cout statement&apos;; return 0;} </pre> <p> <strong>Output:</strong> </p> <img src="//techcodeview.com/img/c-tutorial/23/what-is-include-iostream-c-2.webp" alt="What is include iostream in C++"> <p> <strong>Explanation</strong> :</p> <p>In the above code, we used a cout statement to print the statement. To use the cout statement, we need to include iostream.h header file. Once the cout is executed, statement or variable value will be printing the output. To print any statement, we need to use double quotes (&apos; &apos;), and to print a variable value; we need to use just the variable name without double quotes(&apos; &apos;)</p> <p> <strong>3. Cerr</strong> </p> <p>Cerr is used to print errors in C++, which is present in the iostream header file. If we need to print any error message in the code if any condition fails, then cerr is very helpful.</p> <p>The syntax for cerr is:</p> <pre> cerr&lt;<variable_name < pre> <p>Example:</p> <pre> #include using namespace std; int main() { int a; cin&gt;&gt;a; if(a%2==0){ cout&lt;<'the number entered in even number'<<endl; } else{ std::cerr << 'enter proper number' '
'; return 0; < pre> <p> <strong>Output:</strong> </p> <img src="//techcodeview.com/img/c-tutorial/23/what-is-include-iostream-c-3.webp" alt="What is include iostream in C++"> <p> <strong>Explanation:</strong> </p> <p>In the above example, we used cin to take the input and check if the given number is even or not. If the given number is not even, we need to print an error that the given number is not an even number. We use the cerr keyword in the iostream header file to print this error.</p> <p> <strong>4. Clog:</strong> </p> <p>The clog is also used to print error messages, but unlike cerr, clog is buffered, which means the error message is stored in a buffer and then will be printed, but cerr is unbuffered and will not store the error message in the buffer. The clog also belongs to the iostream header file. As the clog is buffered, it will not show the error message immediately. The clog is preferred more than cerr when efficiency is more important.</p> <p>The syntax for clog:</p> <pre> clog&lt;<variable_name; < pre> <p> <strong>Example:</strong> </p> <pre> #include using namespace std; int main() { clog &lt;&lt; &apos;This message is stored in the buffer&apos;; return 0; } </pre> <p> <strong>Output:</strong> </p> <img src="//techcodeview.com/img/c-tutorial/23/what-is-include-iostream-c-4.webp" alt="What is include iostream in C++"> <p> <strong>Explanation:</strong> </p> <p>In the above code, we are printing an error. To print this error, we use cerr, which belongs to the iostream header file. Before printing the error, we store the error in a buffer.</p> <p> <strong>Example</strong> : For all the input and output streams</p> <pre> #include using namespace std; int main() { int a; string b; cin&gt;&gt;a; if(a%2==0){ cout&lt;<'the number entered is even enter a name'<>b; cout&lt; <b; } else{ std::cerr << 'enter even number' '
'; < pre> <p> <strong>Output:</strong> </p> <img src="//techcodeview.com/img/c-tutorial/23/what-is-include-iostream-c-5.webp" alt="What is include iostream in C++"> <p> <strong>Explanation</strong> : In the above code, we used all the input and output streams in the iostream.h header file.</p> <hr></b;></'the></pre></variable_name;></pre></'the></pre></variable_name></pre></variable_name></pre></variable_name>

Lai izmantotu cin, mums ir jāizmanto #iekļauts jo cin pieder šim galvenes failam, un bez tā radīsies kļūda.

cin koda piemērs:

 //using header file iostream #include using namespace std; int main() { string name; //cin declaration cin &gt;&gt; name; return 0; } 

Izvade:

Kas ir iekļaut iostream valodā C++

Paskaidrojums:

Iepriekš minētajā kodā ievades iegūšanai izmantojām cin, tāpēc, lai izmantotu cin, mēs iekļāvām galvenes failu. Kad ievade tiek ņemta, virknes ievade tiek saglabāta nosaukuma mainīgajā.

2. Cout

Lai izdrukātu izvadi, mums jāizmanto atslēgvārds cout, kas pieder iostream galvenes failam. Lai izmantotu cout, mums ir jāizmanto atslēgvārds cout, kam seko << un mainīgais, vai priekšraksts, lai izdrukātu izvadi.

Cout lietošanas sintakse:

 std::cout&lt;<variable_name < pre> <p> <strong>Example of using cout:</strong> </p> <pre> //to use the cout statement, we need to use the iostream header file #include using namespace std; int main() { //cout statement is used here to print the statement cout &lt;&lt; &apos;Hi from cout statement&apos;; return 0;} </pre> <p> <strong>Output:</strong> </p> <img src="//techcodeview.com/img/c-tutorial/23/what-is-include-iostream-c-2.webp" alt="What is include iostream in C++"> <p> <strong>Explanation</strong> :</p> <p>In the above code, we used a cout statement to print the statement. To use the cout statement, we need to include iostream.h header file. Once the cout is executed, statement or variable value will be printing the output. To print any statement, we need to use double quotes (&apos; &apos;), and to print a variable value; we need to use just the variable name without double quotes(&apos; &apos;)</p> <p> <strong>3. Cerr</strong> </p> <p>Cerr is used to print errors in C++, which is present in the iostream header file. If we need to print any error message in the code if any condition fails, then cerr is very helpful.</p> <p>The syntax for cerr is:</p> <pre> cerr&lt;<variable_name < pre> <p>Example:</p> <pre> #include using namespace std; int main() { int a; cin&gt;&gt;a; if(a%2==0){ cout&lt;<\'the number entered in even number\'<<endl; } else{ std::cerr << \'enter proper number\' \'
\'; return 0; < pre> <p> <strong>Output:</strong> </p> <img src="//techcodeview.com/img/c-tutorial/23/what-is-include-iostream-c-3.webp" alt="What is include iostream in C++"> <p> <strong>Explanation:</strong> </p> <p>In the above example, we used cin to take the input and check if the given number is even or not. If the given number is not even, we need to print an error that the given number is not an even number. We use the cerr keyword in the iostream header file to print this error.</p> <p> <strong>4. Clog:</strong> </p> <p>The clog is also used to print error messages, but unlike cerr, clog is buffered, which means the error message is stored in a buffer and then will be printed, but cerr is unbuffered and will not store the error message in the buffer. The clog also belongs to the iostream header file. As the clog is buffered, it will not show the error message immediately. The clog is preferred more than cerr when efficiency is more important.</p> <p>The syntax for clog:</p> <pre> clog&lt;<variable_name; < pre> <p> <strong>Example:</strong> </p> <pre> #include using namespace std; int main() { clog &lt;&lt; &apos;This message is stored in the buffer&apos;; return 0; } </pre> <p> <strong>Output:</strong> </p> <img src="//techcodeview.com/img/c-tutorial/23/what-is-include-iostream-c-4.webp" alt="What is include iostream in C++"> <p> <strong>Explanation:</strong> </p> <p>In the above code, we are printing an error. To print this error, we use cerr, which belongs to the iostream header file. Before printing the error, we store the error in a buffer.</p> <p> <strong>Example</strong> : For all the input and output streams</p> <pre> #include using namespace std; int main() { int a; string b; cin&gt;&gt;a; if(a%2==0){ cout&lt;<\'the number entered is even enter a name\'<>b; cout&lt; <b; } else{ std::cerr << \'enter even number\' \'
\'; < pre> <p> <strong>Output:</strong> </p> <img src="//techcodeview.com/img/c-tutorial/23/what-is-include-iostream-c-5.webp" alt="What is include iostream in C++"> <p> <strong>Explanation</strong> : In the above code, we used all the input and output streams in the iostream.h header file.</p> <hr></b;></\'the></pre></variable_name;></pre></\'the></pre></variable_name></pre></variable_name>

Izvade:

Kas ir iekļaut iostream valodā C++

Paskaidrojums :

Iepriekš minētajā kodā, lai izdrukātu paziņojumu, mēs izmantojām paziņojumu cout. Lai izmantotu paziņojumu cout, mums ir jāiekļauj galvenes fails iostream.h. Kad kods ir izpildīts, paziņojums vai mainīgā vērtība tiks drukāta izvade. Lai drukātu jebkuru paziņojumu, mums ir jāizmanto dubultpēdiņas (' ') un jādrukā mainīgā vērtība; mums ir jāizmanto tikai mainīgā nosaukums bez pēdiņām ('')

3. Cerr

bash cilpai no 1. līdz 10

Cerr tiek izmantots kļūdu drukāšanai programmā C++, kas atrodas iostream galvenes failā. Ja mums ir jādrukā kāds kļūdas ziņojums kodā, ja kāds nosacījums neizdodas, tad cerr ir ļoti noderīgs.

Cerr sintakse ir:

 cerr&lt;<variable_name < pre> <p>Example:</p> <pre> #include using namespace std; int main() { int a; cin&gt;&gt;a; if(a%2==0){ cout&lt;<\'the number entered in even number\'<<endl; } else{ std::cerr << \'enter proper number\' \'
\'; return 0; < pre> <p> <strong>Output:</strong> </p> <img src="//techcodeview.com/img/c-tutorial/23/what-is-include-iostream-c-3.webp" alt="What is include iostream in C++"> <p> <strong>Explanation:</strong> </p> <p>In the above example, we used cin to take the input and check if the given number is even or not. If the given number is not even, we need to print an error that the given number is not an even number. We use the cerr keyword in the iostream header file to print this error.</p> <p> <strong>4. Clog:</strong> </p> <p>The clog is also used to print error messages, but unlike cerr, clog is buffered, which means the error message is stored in a buffer and then will be printed, but cerr is unbuffered and will not store the error message in the buffer. The clog also belongs to the iostream header file. As the clog is buffered, it will not show the error message immediately. The clog is preferred more than cerr when efficiency is more important.</p> <p>The syntax for clog:</p> <pre> clog&lt;<variable_name; < pre> <p> <strong>Example:</strong> </p> <pre> #include using namespace std; int main() { clog &lt;&lt; &apos;This message is stored in the buffer&apos;; return 0; } </pre> <p> <strong>Output:</strong> </p> <img src="//techcodeview.com/img/c-tutorial/23/what-is-include-iostream-c-4.webp" alt="What is include iostream in C++"> <p> <strong>Explanation:</strong> </p> <p>In the above code, we are printing an error. To print this error, we use cerr, which belongs to the iostream header file. Before printing the error, we store the error in a buffer.</p> <p> <strong>Example</strong> : For all the input and output streams</p> <pre> #include using namespace std; int main() { int a; string b; cin&gt;&gt;a; if(a%2==0){ cout&lt;<\'the number entered is even enter a name\'<>b; cout&lt; <b; } else{ std::cerr << \'enter even number\' \'
\'; < pre> <p> <strong>Output:</strong> </p> <img src="//techcodeview.com/img/c-tutorial/23/what-is-include-iostream-c-5.webp" alt="What is include iostream in C++"> <p> <strong>Explanation</strong> : In the above code, we used all the input and output streams in the iostream.h header file.</p> <hr></b;></\'the></pre></variable_name;></pre></\'the></pre></variable_name>

Izvade:

Kas ir iekļaut iostream valodā C++

Paskaidrojums:

Iepriekš minētajā kodā tiek drukāta kļūda. Lai izdrukātu šo kļūdu, mēs izmantojam cerr, kas pieder iostream galvenes failam. Pirms kļūdas drukāšanas mēs kļūdu saglabājam buferī.

Piemērs : visām ievades un izvades straumēm

 #include using namespace std; int main() { int a; string b; cin&gt;&gt;a; if(a%2==0){ cout&lt;<\\'the number entered is even enter a name\\'<>b; cout&lt; <b; } else{ std::cerr << \\'enter even number\\' \\'
\\'; < pre> <p> <strong>Output:</strong> </p> <img src="//techcodeview.com/img/c-tutorial/23/what-is-include-iostream-c-5.webp" alt="What is include iostream in C++"> <p> <strong>Explanation</strong> : In the above code, we used all the input and output streams in the iostream.h header file.</p> <hr></b;></\\'the>