题解 | 牛牛学说话之-字符串
牛牛学说话之-字符串
https://www.nowcoder.com/practice/fa8bde2f612749c9813262a146488c9d
#include <iostream>
#include <string>
using namespace std;
int main() {
string arr;//定义一个数组
cin>>arr;//输入数组
cout<<arr<<endl;
return 0;
}
// 64 位输出请用 printf("%lld")
