Skip to content

Commit

Permalink
Merge pull request #66 from burenkov-anton/patch-2
Browse files Browse the repository at this point in the history
add indents
  • Loading branch information
usernaimandrey committed May 7, 2023
2 parents 4913a13 + f5b2150 commit ed3f15b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/30-variables/30-variables-naming/description.ru.yml
Expand Up @@ -7,10 +7,10 @@ theory: |
#include <iostream>
int main() {
int user_age = 0;
std::cout << "Enter your age: " << std::endl;
std::cin >> user_age; // объект cin отвечает за стандартный ввод
std::cout << user_age << std::endl;
int user_age = 0;
std::cout << "Enter your age: " << std::endl;
std::cin >> user_age; // объект cin отвечает за стандартный ввод
std::cout << user_age << std::endl;
}
```
Expand Down

0 comments on commit ed3f15b

Please sign in to comment.