题解 | #反序输出#
反序输出
https://www.nowcoder.com/practice/171278d170c64d998ab342b3b40171bb
#include <iostream>
using namespace std;
int main() {
string str;
while (cin >> str) { // 注意 while 处理多个 case
for(int i=3;i>=0;i--){
cout<<str[i];
}
cout<<endl;
}
}
// 64 位输出请用 printf("%lld")
查看15道真题和解析