码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2020-01-11 09:21:29      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:cstring   string   getchar   ret   mic   char   cpp   src   stream   

#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年已经到来了。

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

标签:cstring   string   getchar   ret   mic   char   cpp   src   stream   

原文地址:https://www.cnblogs.com/poi-bolg-poi/p/12178854.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!