C语言训练-大、小写问题-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include#define N 100int main(){ char string[100];//定义string[100]为字符型 int i,j; …… 题解列表 2020年11月17日 0 点赞 0 评论 714 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码#include#includeint main(){ char a[100],b[100];//定义两个数组 gets(a);//输入第一个数组表示的字符 …… 题解列表 2020年11月17日 0 点赞 0 评论 636 浏览 评分: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 评论 823 浏览 评分:8.0
二叉树遍历-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>typedef struct node{ struct node…… 题解列表 2020年11月17日 0 点赞 0 评论 855 浏览 评分:0.0
[编程入门]自定义函数之字符提取-题解(C语言代码) 摘要:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>void stringget(char *string1,char *strin…… 题解列表 2020年11月17日 0 点赞 0 评论 527 浏览 评分:0.0
[编程入门]自定义函数之字符类型统计-题解(C语言代码) 摘要:解题思路:在讨论数字时记得要带上0,如果没带上0就要在后面再单独讨论一下,讨论字母时要分大小写,大小写两种均要被统计注意事项:参考代码:#include#define N 100int main(){…… 题解列表 2020年11月17日 0 点赞 0 评论 888 浏览 评分: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 评论 285 浏览 评分:0.0
[编程入门]水仙花数判断-题解(C++代码) 摘要:解题思路: 一个一个排开判断,会很简单。注意事项:(新手使用,高手勿进)参考代码:#include <iostream>#include <cstdio>using namespace std;in…… 题解列表 2020年11月17日 0 点赞 0 评论 669 浏览 评分:9.9
[编程入门]水仙花数判断-题解(C语言代码) 摘要:解题思路:(很简单)注意事项:(初学者使用)参考代码:#include <iostream>#include <cstdio>using namespace std;int main(){ f…… 题解列表 2020年11月17日 0 点赞 0 评论 695 浏览 评分:9.9
采药-题解(C语言代码) 摘要: ```c #include int main() { int t,m,i,j; int a[101][102]; int b[102][1002]; …… 题解列表 2020年11月17日 0 点赞 0 评论 364 浏览 评分:0.0