Небольшие правки
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -1,4 +1,8 @@
|
|||||||
# ---> C++
|
# ---> C++
|
||||||
|
*.ilk
|
||||||
|
*.pdb
|
||||||
|
.vscode
|
||||||
|
|
||||||
# Prerequisites
|
# Prerequisites
|
||||||
*.d
|
*.d
|
||||||
|
|
||||||
|
|||||||
10
t.cpp
10
t.cpp
@@ -11,6 +11,7 @@ https://www.onlinegdb.com/online_c++_compiler
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
|
|
||||||
void kek(std::string str)
|
void kek(std::string str)
|
||||||
{
|
{
|
||||||
std::cout << str;
|
std::cout << str;
|
||||||
@@ -18,16 +19,19 @@ void kek(std::string str)
|
|||||||
std::string braket;
|
std::string braket;
|
||||||
for (auto s : str)
|
for (auto s : str)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
std::cout<<"Hello World"<<std::endl;
|
std::cout << "Hello World" << std::endl;
|
||||||
|
|
||||||
kek("c2[a]3[b]c");
|
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;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user