Небольшие правки

This commit is contained in:
2024-03-07 23:06:06 +05:00
parent 7656bcc5bc
commit ebf97d2d7f
2 changed files with 15 additions and 7 deletions

4
.gitignore vendored
View File

@@ -1,4 +1,8 @@
# ---> C++
*.ilk
*.pdb
.vscode
# Prerequisites
*.d

8
t.cpp
View File

@@ -11,6 +11,7 @@ https://www.onlinegdb.com/online_c++_compiler
#include <iostream>
#include <string>
void kek(std::string str)
{
std::cout << str;
@@ -18,9 +19,7 @@ void kek(std::string str)
std::string braket;
for (auto s : str)
{
}
}
int main()
@@ -28,6 +27,11 @@ int main()
std::cout << "Hello World" << std::endl;
kek("c2[a]3[b]c");
kek("231[ab]");
kek("c2[a]3[b]c");
kek("3[b15[a]]");
std::string wait;
std::cin >> wait;
return 0;
}