C语言训练-字符串正反连接 (C语言代码) 摘要:#include<stdio.h> #include<string.h> int main() { char s[100], t[50]; int len; i…… 题解列表 2017年10月30日 1 点赞 0 评论 793 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,k,b[50],j; char a[50]; gets(a); …… 题解列表 2019年04月14日 0 点赞 0 评论 298 浏览 评分:0.0
Hifipsysta-1126题-字符串正反连接(C++代码)善用字符串加法 摘要: ```cpp #include #include #include using namespace std; int main() { string str1,str2=…… 题解列表 2022年01月26日 0 点赞 0 评论 155 浏览 评分:0.0
C语言训练-字符串正反连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int n,i; char a[100],b[100]; gets(a); …… 题解列表 2020年12月20日 0 点赞 0 评论 157 浏览 评分:0.0
c++字符串的简单解法 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring>using namespace std;int main(){ string str; getli…… 题解列表 2023年10月16日 0 点赞 0 评论 67 浏览 评分:0.0
编写题解 1126: C语言训练-字符串正反连接 正序打印和逆序打印 摘要:解题思路:注意事项:参考代码:#include <string.h> #include <stdio.h> int main(void) { char a[100]={0}; int …… 题解列表 2023年01月09日 0 点赞 0 评论 103 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:正向输出一遍,反向输出一遍注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char ch[53]; gets(c…… 题解列表 2018年07月06日 0 点赞 0 评论 449 浏览 评分:0.0
algorithm库是真好用 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <algorithm>#include <string>using namespace std;int main(…… 题解列表 2021年10月31日 0 点赞 0 评论 249 浏览 评分:0.0
C语言训练-字符串正反连接 (C++代码)C++之string类的特性 摘要:解题思路:注意事项:参考代码:#include <cstdio> #include <cstring> #include <string> #include <cmath> #include …… 题解列表 2018年11月08日 1 点赞 0 评论 424 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:参考代码:#include<stdio.h> #include<string.h> int main() { int i,str; char n[100];//定义100是因…… 题解列表 2018年03月06日 0 点赞 0 评论 522 浏览 评分:0.0