题解列表

筛选

字符逆序 (C++代码)

摘要:解题思路:注意事项:注意-1参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char str[1000]; gets(str);……