字符逆序 (C++代码)最简洁版本 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> #include <algorithm> using namespace std; i…… 题解列表 2017年12月15日 0 点赞 0 评论 754 浏览 评分:0.0
字符逆序 (C语言代码) 摘要:解题思路:注意事项:参考代码:/*写一函数,使输入的一个字符串按反序存放,在主函数中输入输出反序后的字符串*/#include <stdio.h>#include <string.h> int mai…… 题解列表 2018年03月05日 0 点赞 0 评论 696 浏览 评分:0.0
字符逆序 (C语言代码) 摘要:解题思路以及注意事项:先让用户输入字符串,记得要用gets()接收,方便。然后用strlen()函数计算用户输入了几个字符,strlen()函数在string.h里面。最后用for循环输出,注意数组的…… 题解列表 2017年06月17日 1 点赞 0 评论 875 浏览 评分:0.0
字符逆序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main(){ char a[100]; gets(a); for(in…… 题解列表 2017年10月22日 0 点赞 0 评论 823 浏览 评分:0.0
字符逆序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int k,i; char str[100]; gets(str); k=s…… 题解列表 2019年04月14日 0 点赞 0 评论 291 浏览 评分:0.0
字符逆序-题解(C语言代码) 摘要: 代码: #include #include int main() { char w[100]; char w1[100]; …… 题解列表 2020年03月16日 0 点赞 0 评论 345 浏览 评分:0.0
字符逆序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char a[99],b[99],i,n,k; get…… 题解列表 2019年05月07日 1 点赞 0 评论 387 浏览 评分:0.0
字符逆序cin.get(str,100); 摘要:#include#includeusing namespace std;int main(){ char str[100]; cin.get(str,100);//gets(str); …… 题解列表 2021年03月23日 0 点赞 0 评论 250 浏览 评分:0.0
编写题解 1093: 字符逆序 摘要:参考代码:my_str = list(map(str, input()))for i in my_str[::-1]: print(i, end="") …… 题解列表 2021年04月08日 0 点赞 0 评论 128 浏览 评分:0.0
1093: 字符逆序 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int main(){ getline(cin,s); fo…… 题解列表 2022年05月13日 0 点赞 0 评论 151 浏览 评分:0.0