int main()
{
string str1; //Вводимая строка
getline(cin, str1);
string str2 = "qwrtpsdfghjklzxcvbnmQWRTPSDFGHJKLZXCVBNM"; //буквы которые необходимо найти
for (size_t i = 0; i < str1.size(); i++) {
for (auto s : str2)
if (str1[i] == s) {
str1.insert(i + 1, "!");
}
}
cout << str1;
return 0;
}
for (int i = 0; i < 4; i++)
cout << arra[i];
QString fileName;
if (fileName == nullptr){
fileName = QFileDialog::getOpenFileName(
this,
"Open File",
"//10.10.2.1/17_Проекты/Библиотека",
"file (*.vsd *.vsdx)");}
else {
QErrorMessage *Message = new QErrorMessage();
Message->showMessage("Error");}