diff --git a/README.md b/README.md index a7ac464..7bfde47 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# rsschool-cv \ No newline at end of file +https://SyntaxSorcee52.github.io/rsschool-cv/cv \ No newline at end of file diff --git a/cv.md b/cv.md new file mode 100644 index 0000000..c82155d --- /dev/null +++ b/cv.md @@ -0,0 +1,44 @@ +# Tsybin Rodion + +## Contacts + +* **Location:** Minsk, Belarus +* **Email:** sandwichmasterGG@gmail.com +* **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 +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; +} +```