How to Use C++ to Write Cin and Cout Statements
Setting Up the Main Function
- Include preprocessor directives. These are the first lines of code in the program and are preceded by a hash sign. They are needed for the program to properly compile. In this case the only preprocessor directive needed is iostream, formatted as shown below. Notice that there is no semicolon used at the end of this statement.
- Use standard namespace. In addition to preprocessor directives, the first lines of the code must also define the namespace being used. The standard namespace, formatted as shown below, is sufficient for this code. Note that this line ends with a semicolon.
As a side note, the "using namespace std" line is known as an using directive. Using directives are considered bad practice, as uses of them increases the chances of naming collisions. If you don't want to use using directives, simply prefix every standard library feature with "std::". For example, cout -> std::cout and cin -> std::cin. This works for nested namespaces too, so ios::out would be std::ios::out, numeric_limits::max() would be std::numeric_limits::max().
- Define the main function. To create the main function, type 'int main()' as shown below. The parentheses are for setting the parameters of the function, but here no parameters are needed and thus the parentheses are empty. There is no semicolon after the function definition.
- Make curly braces immediately following the function. On the next line, make a set of curly braces as shown in the graphic. Everything included within these curly brackets is part of the main function. The code up to this point should look something like the picture below.
Writing Cout Statements
- Know the syntax. Cout is used with the insertion operator, which is written as << (two 'less than' signs). The actual output then follows, written within quotation marks. The line must end with a semicolon.
- Write the cout statement. Within the main function, type the cout statement using the proper syntax. For example: cout << 'type text here'; (or std::cout << "type text here";, if you don't like the use of using directives)
- Become familiar with other uses of cout. Cout can also be used to output the values of variables, as long the variable has already been defined. Simply write the name of the variable after the insertion operator as shown below.
Error: cout<<"x"; wouldn't print 5, it would print 'x' (as a char) The same goes for cout<<"y"; Also, cout doesn't implicitly add newlines, meaning the above example would print "xy", and if we fixed the bug to print the value of x and the value of y, it would print "523". The solution is to use a newline symbol. A newline symbol is written as n. Example: std::cout << x << "n"; would print the value of x, then a newline character, meaning if we print the value of y (using the example above, it would print "5", then "23" on a new line.
- Use multiple insertion operators in a single statement. Insertion operators can be simply chained together, one after the other as shown in the figure.
(Note, for advanced readers, ignore this otherwise: The reason why you can chain calls to cout is within the insertion operator (operator<<) itself. The insertion operator returns *this, which, in this context, is the first parameter (cout), meaning *this returns cout. Successive calls are then parsed as cout << ..., which works.)
Writing Cin Statements
- Know the syntax. Cin is used with the extraction operator, which is written as >> (two 'greater than' signs). The operator is then followed by a variable where the inputted data is stored. The line must end with a semicolon.
- Write the cin statement. First declare a variable. Then write a cin statement to define a value for the variable as shown. When the program runs, the input that user enters will be assigned to the variable. Note that the cin statement does not output any text onto the monitor.
- Combine cin and cout statements. Cin and cout statements can and should be used together. For instance, a cout statement may be used to prompt the user to assign a value to a variable, which is then assigned through a cin statement as shown in the figure.
You should read it
- Function in programming C
- Save time with these text formatting functions in Microsoft Excel
- Function in C / C ++
- What is the function of the F1 to F12 keys on Windows?
- How to use the SMALL function in Google Sheets
- DAY function in SQL Server
- MIN function in SQL Server
- MAX function in SQL Server
- Using a computer for a long time, do you know the meaning of these keys?
- SUM function in SQL Server
- The ord () function in Python
- RIGHT function in SQL Server
Maybe you are interested
How to turn a photo into a painting using the Generative Fill function in Photoshop
How to use the TREND function in Excel
Google Sheets Functions to Simplify Your Budget Spreadsheets
Instructions for using the TRIMRANGE function to clean up Excel tables
How to master numerical data in Google Sheets with the AVERAGE function
Don't buy headphones if they lack this important function!