赞
踩
AI源码C++实现 (手动狗头~)
class AIMain { public: void mainloop() { string str; while (getline(cin, str)) { auto pos = str.find("你"); if (pos != -1) str.replace(pos, 2, "我"); pos = str.find("吗"); if (str.find("吗") !=-1) str.replace(pos, 2, "呢"); /* pos = str.rfind("?"); if (pos != -1) str.replace(pos, 1, "! ");*/ str += "!"; cout << str << endl; str.clear(); } } };
int main()
{
AIMain ai;
ai.mainloop();
return 0;
}
示例结果:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。