[编程入门]自定义函数之字符串反转-题解(C语言代码) 摘要:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>void stringback(char *string1,char *stri…… 题解列表 2020年11月17日 0 点赞 0 评论 414 浏览 评分:0.0
C语言训练-大、小写问题-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include#define N 100int main(){ char string[100];//定义string[100]为字符型 int i,j; …… 题解列表 2020年11月17日 0 点赞 0 评论 866 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码#include#includeint main(){ char a[100],b[100];//定义两个数组 gets(a);//输入第一个数组表示的字符 …… 题解列表 2020年11月17日 0 点赞 0 评论 684 浏览 评分:0.0
密码-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ int n,b; char ch; int arr1[4],arr[4]={0,0,0,0}; int tur…… 题解列表 2020年11月17日 0 点赞 0 评论 908 浏览 评分:8.0
二叉树遍历-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>typedef struct node{ struct node…… 题解列表 2020年11月17日 0 点赞 0 评论 959 浏览 评分:0.0
[编程入门]自定义函数之字符提取-题解(C语言代码) 摘要:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>void stringget(char *string1,char *strin…… 题解列表 2020年11月17日 0 点赞 0 评论 633 浏览 评分:0.0
[编程入门]自定义函数之字符类型统计-题解(C语言代码) 摘要:解题思路:在讨论数字时记得要带上0,如果没带上0就要在后面再单独讨论一下,讨论字母时要分大小写,大小写两种均要被统计注意事项:参考代码:#include#define N 100int main(){…… 题解列表 2020年11月17日 0 点赞 0 评论 1028 浏览 评分:8.0
[编程入门]完数的判断-题解(C语言代码) 摘要:参考代码:#include <stdio.h>#include <stdlib.h>int zhishu(int x){ int flag=0; for(int i=2;i<=x/2;i+…… 题解列表 2020年11月17日 0 点赞 0 评论 370 浏览 评分:0.0
[编程入门]水仙花数判断-题解(C++代码) 摘要:解题思路: 一个一个排开判断,会很简单。注意事项:(新手使用,高手勿进)参考代码:#include <iostream>#include <cstdio>using namespace std;in…… 题解列表 2020年11月17日 0 点赞 0 评论 730 浏览 评分:9.9
[编程入门]水仙花数判断-题解(C语言代码) 摘要:解题思路:(很简单)注意事项:(初学者使用)参考代码:#include <iostream>#include <cstdio>using namespace std;int main(){ f…… 题解列表 2020年11月17日 0 点赞 0 评论 758 浏览 评分:9.9