std::cout<<\"Goodbye 2019\"<<\" \"<<\"Hello 2020\"<<'\\n';

会有一股神秘感。 提交于 2020-01-11 08:00:44
#include<iostream>
#include<cstring>
#include<string>
#include<cstdio>
#include<algorithm>

inline void read(int &T) {
    int x=0;bool f=0;char c=getchar();
    while(c<'0'||c>'9'){if(c=='-')f=!f;c=getchar();}
    while(c>='0'&&c<='9'){x=x*10+c-'0';c=getchar();}
    T=f?-x:x;
}

int main() {
    std::cout<<"Goodbye 2019"<<" "<<"Hello 2020"<<'\n';
    return 0;
}


转眼间2019年已经过去了,2020年已经到来了。

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!