题解 超级提速版
2023-07-24 10:25:18
发布于:河北
211阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main(){
ios::sync_with_stdio(0);
cout.tie(0);
cout<<"Nice to meet you"<<"\n"<<"Nice to meet you too";
return 0;
}
全部评论 2
这方法好像有点多余,应该是这样吧:
#include<iostream>
using namespace std;
int main()
{
cout<<"Nice to meet you\nNice to meet you too";
}
当然,加一个return也可以3天前 来自 上海
0hi
2023-07-24 来自 河北
0
有帮助,赞一个