initial commit

This commit is contained in:
2023-07-16 13:23:25 +00:00
commit c3fa5367c3
85 changed files with 4921 additions and 0 deletions

14
C++/lesson5/task1.cpp Normal file
View File

@ -0,0 +1,14 @@
#include <iostream>
#include <string>
void addOne(int &x) {
x = x + 1;
}
int main() {
int a = 7;
std::cout << "a = " << a << '\n';
addOne(a);
std::cout << "a = " << a << '\n';
return 0;
}