题解 1260: 逆反的01串

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

筛选

逆反的01串(c语言)

摘要:```c #include #include void Convert(char* strs); int main() { char strs[201] = { 0 }; whi……

1260: 逆反的01串

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

逆反的01串(Java代码)

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

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

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

逆反的01串 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; int main() { string st……

逆反的01串 (Java代码)

摘要:解题思路:注意事项:参考代码: public static void main(String[] args) { // TODO Auto-generated method stub Scanne……