很简单· 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>intmain(){inti=0,j=0;chararr[100];gets…… 题解列表 2022年11月19日 0 点赞 0 评论 58 浏览 评分:0.0
编写题解 1093: 字符逆序加错误反思 摘要:解题思路:注意事项:之前代码没有考虑str[i]=getchar())!=EOFandi<=100导致一直通过不了参考代码:char str[101]; &a…… 题解列表 2022年11月14日 0 点赞 0 评论 24 浏览 评分:0.0
最简方法字符逆序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){ inti;charch[100];gets(ch);for(i=…… 题解列表 2022年11月10日 0 点赞 0 评论 84 浏览 评分:9.9
1093: 字符逆序 摘要:#include#includeintmain(){chararr[100]={'\0'};fgets(arr,100,stdin);//fgets()会把读入字符串中intr=strlen(arr)…… 题解列表 2022年11月09日 0 点赞 0 评论 90 浏览 评分:0.0
C语言联合if语句正常解法 摘要:解题思路:无非就是一个从零开始一个从最大开始,一个递增一个递减一直互相交换字符注意事项:这里面交换字符的中间量记得用char参考代码:#include<stdio.h>#include&l…… 题解列表 2022年11月01日 0 点赞 0 评论 55 浏览 评分:9.9
1093——字符逆序 摘要:参考代码:#include"stdio.h"#include"string.h"typedef char string[11…… 题解列表 2022年10月29日 0 点赞 0 评论 44 浏览 评分:0.0
字符逆序C++实现 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>usingnamespacestd;intmain(){ &…… 题解列表 2022年10月27日 0 点赞 0 评论 54 浏览 评分:0.0
递归逆序输出字符串 摘要:参考代码:#include"stdio.h"#include"string.h"void fun(char *str,int…… 题解列表 2022年10月27日 0 点赞 0 评论 87 浏览 评分:0.0
字符逆序(怀氏C++) 摘要:#include<iostream>using namespace std;#include<algorithm>int …… 题解列表 2022年10月25日 0 点赞 0 评论 419 浏览 评分:9.9
简单代码数组交换 摘要:解题思路:数组交换注意事项:参考代码:#include<stdio.h>intmain(){ charA[100]; &nb…… 题解列表 2022年10月17日 0 点赞 1 评论 29 浏览 评分:9.9