字符串问题-题解(C语言代码) 摘要:本题比较简单,大致思路如下: 读入字符串,遍历倒序输出。 我觉得注意的就是方法的选择,以及相应知识点的运用。 第一种方法是最简单的直接倒序输出: ```c #include #includ…… 题解列表 2019年06月22日 1 点赞 0 评论 462 浏览 评分:8.0
字符串问题-题解(C++和python代码) 摘要:c++用了string类和algorithm #include #include #include using namespace std; int main() { str…… 题解列表 2019年06月16日 0 点赞 0 评论 597 浏览 评分:9.9
字符串问题 (C语言代码) 摘要:解题思路:输入 获取长度 倒序输出注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char a[1000]; gets(a…… 题解列表 2019年04月23日 0 点赞 0 评论 333 浏览 评分:0.0
字符串问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>int main(){ using namespace std; char a[255]; int …… 题解列表 2019年04月18日 0 点赞 0 评论 617 浏览 评分:0.0
字符串问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,k; char a[255]; gets(a); k=strle…… 题解列表 2019年04月14日 0 点赞 0 评论 289 浏览 评分:0.0
字符串问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int len,i; char a[100]; scanf("%s",a);…… 题解列表 2019年04月11日 0 点赞 0 评论 335 浏览 评分:0.0
字符串问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100]={0};char b[100]={0};int…… 题解列表 2019年01月20日 0 点赞 0 评论 300 浏览 评分:0.0
字符串问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int fun(char *p1,char *p2);int main(){ int L; …… 题解列表 2018年12月11日 0 点赞 0 评论 935 浏览 评分:0.0