c++指针法(指针练习) 摘要:解题思路:注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){chararr[100];cin.getline(arr,100)…… 题解列表 2023年12月14日 0 点赞 0 评论 110 浏览 评分:0.0
1031: [编程入门]自定义函数之字符串反转 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h> //strlen求字符串长度是要用intmain(){c…… 题解列表 2023年12月04日 0 点赞 0 评论 49 浏览 评分:2.0
自定义函数之字符串反转 摘要:解题思路:注意事项:参考代码:#include<stdio.h>voiddx_print(chara[],intn){ inti=0;&nbs…… 题解列表 2023年11月30日 0 点赞 0 评论 39 浏览 评分:0.0
自定义函数之字符串反转 摘要:解题思路:for循环,倒叙输出注意事项:参考代码:#include<stdio.h>#include<string.h> intmain(){chara[10…… 题解列表 2023年11月20日 0 点赞 0 评论 46 浏览 评分:0.0
用循环来倒置字符串 摘要:解题思路:注意事项:参考代码:importjava.util.ArrayList;importjava.util.List;importjava.util.Scanner;publicclassMai…… 题解列表 2023年11月14日 0 点赞 0 评论 62 浏览 评分:9.9
c代码记录之自定义函数字符串反转 摘要:解题思路:输入输出做在主函数,自定义函数用于逆序排列字符数组,方法是首尾字符互换注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int…… 题解列表 2023年11月09日 0 点赞 0 评论 54 浏览 评分:0.0
自定义函数之字符串反转 摘要:解题思路:b[i]=a[len-i-1]注意事项:strlen()函数(统计字符串长度)要有头文件#include<string.h>参考代码:#include<stdio.h>…… 题解列表 2023年11月08日 0 点赞 0 评论 82 浏览 评分:9.9
自定义函数之字符串反转 摘要:解题思路:这段代码中的mystrrev函数用于反转输入的字符串。在这个函数中,参数ch1被当作字符数组的指针来处理。当数组作为参数传递给函数时,实际上传递的是数组的地址,也就是指向数组第一个元素的指针…… 题解列表 2023年11月08日 0 点赞 0 评论 80 浏览 评分:9.9
gets的使用和换行引起的错误 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>voidfanc(chara[100]){gets(a);intlen=st…… 题解列表 2023年11月02日 0 点赞 0 评论 19 浏览 评分:0.0
1031: [编程入门]自定义函数之字符串反转c语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>intmain(){charstr[100];gets(str);//输入一…… 题解列表 2023年11月01日 0 点赞 0 评论 80 浏览 评分:0.0