题解 | 牛牛学说话之-字符串
牛牛学说话之-字符串
https://www.nowcoder.com/practice/fa8bde2f612749c9813262a146488c9d
#include <iostream>
using namespace std;
int main() {
string a;
while (cin >> a) { // 注意 while 处理多个 case
cout << a << endl;
}
}
// 64 位输出请用 printf("%lld")


查看1道真题和解析