Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CV#1. Markdown & Git #1

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# rsschool-cv
https://SyntaxSorcee52.github.io/rsschool-cv/cv
44 changes: 44 additions & 0 deletions cv.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Tsybin Rodion

## Contacts

* **Location:** Minsk, Belarus
* **Email:** [email protected]
* **GitHub:** [SyntaxSorcee52](https://github.com/SyntaxSorcee52 "account GitHub")
* **Discord** rodeon2415

### About Me

My name is Rodion, I am 16 y.o. , I am a 10th grade student at Zhdanovichskaya Secondary School. I like snowboarding, BMX freestyle,computer games.

I am also interested in robotics and programming.

### My skills

* English(A2)
* CSS, HTML
* C++ Basics
* JavaScript Basics
* Git, GitHub

### Code Example

```
#include <iostream>
using namespace std;

int main() {
int height;
cout << "Введите высоту треугольника: ";
cin >> height;

for (int i = 0; i < height; i++) {
for (int k = 0; k <= i; k++) {
cout << "*";
}
cout << endl;
}

return 0;
}
```