Ответ:
string str ("There are two needles in this haystack.");
string str2 ("needle");
if (str.find(str2) != string::npos) {
// Делай тут что хочешь
}
Объяснение:
Используйте библиотеку std(Стандартная библиотека c++)
using namespace std;
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
string str ("There are two needles in this haystack.");
string str2 ("needle");
if (str.find(str2) != string::npos) {
// Делай тут что хочешь
}
Объяснение:
Используйте библиотеку std(Стандартная библиотека c++)
using namespace std;