题解 1260: 逆反的01串

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

筛选

逆反的01串 (C语言代码)

摘要:#include <stdio.h>int main(){     int i;     char a[201];     while(gets(a)!=NULL)     {            …

逆反的01串(Java代码)

摘要:解题思路:  字符串的连接注意事项:  无参考代码:import java.util.Scanner; public class Main { public static void main(S……

1260: 逆反的01串

摘要:```cpp #include #include using namespace std; int main() { char n[200]; while(cin>>n)……

逆反的01串(c语言)

```c#include#includevoidConvert(char*strs);intmain(){charstrs[201]={0};while(scanf("%s",strs)!=EOF){getchar();Convert(strs);puts(strs);}return0;}voidCo