题解 1206: 字符串问题

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

筛选

题解 1206: 字符串问题

摘要:解题思路:1.首先,定义一个字符串2.运用gets函数输入3.获得字符串的长度4.字符串的长度与数组的实际为序大15.从后向前输出字符串注意事项:参考代码:#include<stdio.h> #in……

编写题解 1206: 字符串问题

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

1206: 字符串问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char str[50]; gets(str); int len=strlen(str); fo……

字符串翻转秒解决

摘要:#include #include #include using namespace std; //回文串 int main() { string s1; cin>>s1;……

字符串问题——抽象JAVA

摘要:解题思路:StringBuilder反转参考代码:import java.util.*;public class Main { public static void main(String[] arg……

菜鸡写法,分情况就ok

摘要:解题思路:注意事项:参考代码:#include <iostream>#include<string>#include<cstring>#include<algorithm>#include<cmath……