字符串问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,k; char a[255]; gets(a); k=strle…… 题解列表 2019年04月14日 0 点赞 0 评论 290 浏览 评分:0.0
题解 1206: 字符串问题 摘要:解题思路:1.首先,定义一个字符串2.运用gets函数输入3.获得字符串的长度4.字符串的长度与数组的实际为序大15.从后向前输出字符串注意事项:参考代码:#include<stdio.h> #in…… 题解列表 2022年03月08日 0 点赞 0 评论 207 浏览 评分:0.0
字符串问题 (C语言代码) 摘要:解题思路:输入 获取长度 倒序输出注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char a[1000]; gets(a…… 题解列表 2019年04月23日 0 点赞 0 评论 334 浏览 评分:0.0
字符串问题-题解(C语言代码) 摘要:```c #include #include int main() { char a[255], b[255]; gets(a); int n = strlen(…… 题解列表 2020年09月29日 0 点赞 0 评论 265 浏览 评分:0.0
用指针完成颠倒位置 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void DD(char *a){ char *p = a; char temp; while(*a != '\0') …… 题解列表 2018年03月17日 0 点赞 0 评论 680 浏览 评分:0.0
1206: 字符串问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char str[50]; gets(str); int len=strlen(str); fo…… 题解列表 2022年06月23日 0 点赞 0 评论 106 浏览 评分: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 评论 301 浏览 评分: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 评论 336 浏览 评分:0.0
C++ string类:字符串问题 摘要:# C++ string类 ```c++ #include using namespace std; int main() { string s; getline(c…… 题解列表 2023年06月05日 0 点赞 0 评论 151 浏览 评分:0.0