题解 1126: C语言训练-字符串正反连接

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

C语言训练-字符串正反连接解决方案

摘要:解题思路:  把a数组正反放到b数组内注意事项:  在b数组结尾处需加上‘\0’参考代码:int main(){    char a[100],b[200];    gets(a);    int i……

水无月C语言版本

摘要:**代码:** ```c #include #include int main() { char a[50],b[50]; int i; gets(a); ……