[编程入门]数字的处理与判断-题解(C语言代码) 摘要:```c #include int main() { int i,count=0,x[5]; //count统计位数,x[5]储存数字 for (i=…… 题解列表 2020年03月12日 0 点赞 0 评论 891 浏览 评分:0.0
蓝桥杯算法训练VIP-字符串编辑-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; int main() { char str[40]; …… 题解列表 2020年03月12日 0 点赞 0 评论 1065 浏览 评分:0.0
[编程入门]自定义函数之字符类型统计-题解(C语言代码) 摘要: 代码: #include #include void function(char *w) { int n=0; while(w[n]…… 题解列表 2020年03月12日 0 点赞 0 评论 567 浏览 评分:0.0
[编程入门]自定义函数之字符串拷贝-题解(C语言代码) 摘要: #include void cut(char str[],int m) { int i,j=0; char b[100]; for(i=…… 题解列表 2020年03月12日 0 点赞 0 评论 1037 浏览 评分:0.0
蓝桥杯算法提高VIP-Pascal三角-题解(C语言代码) 摘要: #include int f(int m, int n) { if (0 == m || n == m) return 1; return f(…… 题解列表 2020年03月12日 0 点赞 0 评论 1020 浏览 评分:0.0
[编程入门]三个字符串的排序-题解(C语言代码) 摘要:数组太大不太行 会运行出错在这里 #include #include int main() { char a[100],b[100],c[100],…… 题解列表 2020年03月12日 0 点赞 0 评论 742 浏览 评分:0.0
P1002-题解(C++代码) 摘要:```cpp #include using namespace std; typedef struct Stu{ char name[20]; int qimo; …… 题解列表 2020年03月12日 0 点赞 0 评论 1056 浏览 评分:0.0
[编程入门]自定义函数之字符串反转-题解(C语言代码) 摘要: 字符串逆序,:kissing: 代码: #include void aaa(char *w) { int a=0; while(w[a]) …… 题解列表 2020年03月13日 0 点赞 0 评论 597 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要: 找到两个字符串的数量,相加输出。 代码: #include void aaa(char *w,char *w1) { int a=0; in…… 题解列表 2020年03月13日 0 点赞 0 评论 684 浏览 评分:0.0
C语言训练-大、小写问题-题解(C语言代码) 摘要: 用一个函数 tolower() 这是让字母有大写转为小写,还有 #inclue 没了,当然不能用 scanf() 函数输入,用 gets() 函数输入 因为是按一下回车。 代码: …… 题解列表 2020年03月13日 0 点赞 0 评论 656 浏览 评分:0.0