编写题解 1093: 字符逆序(不多解释,一看就明白) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ …… 题解列表 2024年12月18日 1 点赞 0 评论 45 浏览 评分:10.0
编写题解 1093: 字符逆序 基础解法 摘要:解题思路:正常解法注意事项:参考代码:#include<stdio.h>#include<string.h>intmain(){intb,c,d,n;chara[100];ge…… 题解列表 2021年10月11日 0 点赞 0 评论 472 浏览 评分:9.9
字符逆序(存一个好用的方法以及一个常规的方法) 摘要:解题思路:注意事项:参考代码:1.常规的交换方法#include <stdio.h>#include <string.h>int&n…… 题解列表 2020年12月15日 0 点赞 0 评论 453 浏览 评分:9.9
最简洁,没有之一,将一个字符串str的内容颠倒过来,并输出。str的长度不超过100个字符。 摘要:解题思路:注意事项:就是迭代器调换位置,注意包含头文件参考代码:#include<iostream>#include<cstring>#include<stdlib.h&…… 题解列表 2024年06月14日 0 点赞 0 评论 106 浏览 评分:9.9
简单代码数组交换 摘要:解题思路:数组交换注意事项:参考代码:#include<stdio.h>intmain(){ charA[100]; &nb…… 题解列表 2022年10月17日 0 点赞 1 评论 29 浏览 评分:9.9
简便的逆序 摘要:解题思路:字符逆序注意事项:注意函数表达参考代码:#include<stdio.h>#include<string.h>intmain(){charstr[100];&…… 题解列表 2021年03月19日 0 点赞 0 评论 343 浏览 评分:9.9
字符逆序 简单除暴 摘要:解题思路:直接读取字符串的长度,然后通过循环反向输出即可,我看很多题解都加了中间变量,完全没有必要。注意事项:如果你用c++写的话,用cin输入是读取不到空格的,所以用scanf或者gets。参考代码…… 题解列表 2021年04月02日 0 点赞 0 评论 497 浏览 评分:9.9
用指针几行搞定(c语言) 摘要:解题思路:按题意写即可注意事项:使用gets()输入参考代码:#include<stdio.h>#include<string.h>int main(){ch…… 题解列表 2022年12月24日 0 点赞 0 评论 111 浏览 评分:9.9
用切片来写 摘要:a=input()count=len(a)z=count-1q=countforiinrange(count): print(a[z:q],end=…… 题解列表 2022年02月02日 0 点赞 0 评论 323 浏览 评分:9.9
字符逆序(c语言极简) 摘要:解题思路:一口气读入后跳过末尾'\0'后直接输出,清晰明了,简单粗暴注意事项:注意跳过'\0'即可参考代码:#include<st…… 题解列表 2022年03月08日 0 点赞 0 评论 173 浏览 评分:9.9