题解 1093: 字符逆序

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

筛选

字符逆序 (Java代码)

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Invert { public static void invertStr(String s)……

字符逆序-题解(C++代码)

摘要:解题思路:注意事项:    输入字符串,里面有空格。。。gets()函数走起参考代码:#include<bits/stdc++.h> using namespace std; int main……

指针遍历交换

摘要:解题思路:不算复杂注意事项:注意指针的移动和交换参考代码:#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<string.h>#incl……

字符逆序c语言

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i; char a[1001]; gets(a); for(i=st……

1093: 字符逆序(c++)

摘要:解题思路:注意事项:主义头文件#include<string>参考代码:#include <iostream>#include<string>using namespace std;int main(……

超简短,通俗易懂的代码

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