摘要: #include using namespace std; int main() { int input; cin >> input; int output = 0; while(input!=0) { output=output*10+input%10; input/=10; } cout<<output;... 阅读全文
posted @ 2018-10-24 20:22 李白打野贼帅 阅读(365) 评论(0) 推荐(0) 编辑