第二届中国计量大学ACM程序设计竞赛个人赛(同步赛)L-Story of Eden【中文引号输出】

题目链接

第二届中国计量大学ACM程序设计竞赛个人赛(同步赛)L-Story of Eden【中文引号输出】_第1张图片

个人题解:
水题。注意中文引号 可以用转义字符 \ 输出

AC

#include
using namespace std;
int main(){
    int t;
    cin>>t;
    while(t--){
        string s,res;
        cin>>s;
        string start="Love replied to ";
        string en=", \"Nothing is good or bad, and the interpretation is in people.\"";
        res=start+s+en;
        cout<<res<<endl;
    }
    return 0;
}
学如逆水行舟,不进则退

你可能感兴趣的:(算法)