赞
踩
- #include<iostream>
- using namespace std;
- bool judge(int x,string str);
- int main()
- {
- int n;
- cin>>n;
- getchar();
- while(n--)
- {
- string str;
- getline(cin,str);
- // 无论用户说什么,首先把对方说的话在一行中原样打印出来
- cout<<str<<endl;
- // 消除原文中多余空格:把相邻单词间的多个空格换成 1个空格,把行首尾的空格全部删掉,把标点符号前面的空格删掉
- int t=0;
- while(1)
- {
- int pos=str.find(" ",t);
- if(pos!=-1)
- {
- if(judge(pos+1,str) || pos==0 || pos==str.length()-1)
- {
- str.erase(pos,1);
- }
- else
- {
- t=pos+1;
- }
- }
- else
- {
- break;
- }
- }
- // 把原文中所有大写英文字母变成小写,除了 I
- // 把原文中所有的问号 ? 换成惊叹号 !
- for(int i=0;i<str.length();i++)
- {
- if(str[i]>='A' && str[i]<='Z' && str[i]!='I')
- {
- str[i]+=32;
- }
- else if(str[i]=='?')
- {
- str[i]='!';
- }
- }
- // 把原文中所有独立的 can you、could you 对应地换成 I can、I could—— 这里“独立”是指被空格或标点符号分隔开的单词
- // 把原文中所有独立的 I 和 me 换成 you
- // 在一行中输出替换后的句子作为 AI 的回答
- cout<<"AI: ";
- for(int i=0;i<str.length();)
- {
- bool pre=(i==0 || str[i-1]==' ' || judge(i-1,str));
- if(str.substr(i,7)=="can you" && pre && (i==str.length() || str[i+7]==' ' || judge(i+7,str)))
- {
- cout<<"I can";
- i+=7;
- }
- else if(str.substr(i,9)=="could you" && pre && (i==str.length() || str[i+9]==' ' || judge(i+9,str)))
- {
- cout<<"I could";
- i+=9;
- }
- else if(str.substr(i,1)=="I" && pre && (i==str.length() || str[i+1]==' ' || judge(i+1,str)))
- {
- cout<<"you";
- i+=1;
- }
- else if(str.substr(i,2)=="me" && pre && (i==str.length() || str[i+2]==' ' || judge(i+2,str)))
- {
- cout<<"you";
- i+=2;
- }
- else
- {
- cout<<str[i];
- i+=1;
- }
- }
- cout<<endl;
- }
- return 0;
- }
- //字母和数字返回 0 ,否则返回 1
- bool judge(int x,string str)
- {
- return (!((str[x]>='a' && str[x]<='z') || (str[x]>='A' && str[x]<='Z') || (str[x]>='0' && str[x]<='9')));
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。