Files
f-task/t.cpp

38 lines
768 B
C++
Raw Normal View History

2024-03-07 13:01:58 +05:00
/******************************************************************************
Online C++ Compiler.
Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.
https://www.onlinegdb.com/online_c++_compiler
*******************************************************************************/
#include <iostream>
#include <string>
2024-03-07 23:06:06 +05:00
void kek(std::string str)
2024-03-07 13:01:58 +05:00
{
std::cout << str;
2024-03-07 23:06:06 +05:00
2024-03-07 13:01:58 +05:00
std::string braket;
for (auto s : str)
{
}
}
int main()
{
2024-03-07 23:06:06 +05:00
std::cout << "Hello World" << std::endl;
2024-03-07 13:01:58 +05:00
kek("c2[a]3[b]c");
2024-03-07 23:06:06 +05:00
kek("231[ab]");
kek("c2[a]3[b]c");
kek("3[b15[a]]");
std::string wait;
std::cin >> wait;
2024-03-07 13:01:58 +05:00
return 0;
}