Basics of C++


Module

1

(C++) Let's get acquainted!

Dedicated to the study of the interface with courses


Module

2

(C++) Printing text to the screen

Learning to output various text on the screen


Module

3

(C++) Variables. Output formats

In the module we analyze what a variable is. Types of variables. We continue to work with the output operator. Getting to know output specifiers. We learn to display and enter values of variables in various formats.


Module

4

(C++) Arithmetic expressions

We study the assignment operator. Master the intricacies of working with integers


Module

5

(C++) Integer division and remainder

An important module for further study of programming. We disassemble the division completely and take the remainder. Trying to deal with the most difficult questions, questions related to these tasks.


Module

6

(C++) Real numbers

We study the features of working with real numbers


Module

7

(C++) Conditional operator

We study various forms of the conditional operator, simple and complex conditions



Module

9

(C++) Loops. Loop with parameter (for)

We study what a loop is. What types of loops are there in the C++ programming language. Introducing the construction of the for loop. We fix everything learned in practice


Module

10

(C++) For loop operator. Typical tasks

Without knowing simple algorithms, it is difficult to write any complex programs. Therefore, in this module we learn to find the sum of a fixed sequence of numbers and determine the maximum and minimum number among the numbers entered from the keyboard


Module

11

(C++) Loop statement with condition - while

We study the loop operator with the condition - while. We get acquainted with the structure of the operator. We solve the problem of the number of digits in the number


Module

12

(C++) Subroutines: procedures and functions - 1

We learn to use procedures in solving problems. We solve the simplest tasks


Module

13

(C++) Subroutines: Procedures and Functions - 2

We learn to use functions in solving problems. We solve the simplest tasks


Module

14

(C++) Recursion

Learn what recursion is. How to make a program using recursive procedures and functions. We analyze the simplest tasks. We solve problems on the number system and recursive search of strings