题解
2025-03-28 23:02:22
发布于:浙江
0阅读
0回复
0点赞
1
#include<bits/stdc++.h>
using namespace std;
int main(){
printf("Nice to meet you\n"
"Nice to meet you too\n");
return 0;
}
2
#include<bits/stdc++.h>
using namespace std;
int main(){
cout<<"Nice to meet you"<<endl;
cout<<"Nice to meet you too";
return 0;
}
这里空空如也
有帮助,赞一个