题解 1093: 字符逆序

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

筛选

字符逆序 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>intmain(){ints[10],min=0,t,i;for(i=0;i&l……

字符逆序 (C语言代码)

摘要:题目描述将一个字符串str的内容颠倒过来,并输出。str的长度不超过100个字符。输入输入包括一行。第一行输入的字符串。输出输出转换好的逆序字符串。样例输入Iamastudent样例输出tneduts……

字符逆序 (C++代码)

摘要:解题思路:该题主要是考虑到要算上空格的个数,才是字符串的总长度。注意事项:不能使用scanf()输入,而是要改为gets()的字符串输入格式,然后使用strlen()函数,求其字符串长度。参考代码:#……

字符逆序 (C++代码)

摘要:解题思路:注意事项:注意-1参考代码:#include<bits/stdc++.h>usingnamespacestd;intmain(){&nbsp;charstr[1000];……

字符逆序 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>intmain(){intk,i;charstr[100];gets(str……

字符逆序 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>intmain(){intk,i;charstr[100];gets(str……