所以,我刚刚开始这门 C++ 课程,我们现在正在做字符串。对于这个作业,我的教授要我做的是在一个字符串中找到一个字符串并将其打印出来并放在一个位置上。这是我的代码:
#include <iostream>
#include <string>
using namespace std;
int main()
{
cout << "Please enter a phrase: " << endl;
string phrase;
getline(cin, phrase);
cout << "Please enter a possible substring of the phrase: " << endl;
string phrase_2;
getline(cin, phrase_2);
string pos = phrase.substr(phrase_2);
cout << phrase_2 << "was found at position " << pos << endl;
return 0;
}
我已经尝试了几个小时试图让代码打印出位置。这可能是完全错误的,对此我深表歉意,但如果您能帮助我,我将不胜感激。