琪露诺的编程教室(C++代码) 摘要:解题思路: strcmy(a,b)---比较数组a,b,如果大于0,则表示数组a比b大;小于0,则表示数组a比b小;相等表示两个数组 相等; &nb 题解列表 2017年12月28日 0 点赞 0 评论 1022 浏览 评分:0.0
琪露诺的编程教室(C++代码) 摘要:解题思路: strcmy(a,b)---比较数组a,b,如果大于0,则表示数组a比b大;小于0,则表示数组a比b小;相等表示两个数组 相等; &nb 题解列表 2017年12月28日 0 点赞 0 评论 1269 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <math.h>#include <string.h>int main(){ …… 题解列表 2017年12月17日 0 点赞 0 评论 824 浏览 评分:0.0
WU-C语言程序设计教程(第三版)课后习题10.2 (C语言代码) 摘要:参考代码:#include<stdio.h> #include<string.h> int main() { char *s[3],*p,a[100],b[100],c[100]; in…… 题解列表 2017年12月09日 21 点赞 4 评论 1003 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char c[105],d[105],e[105]; cha…… 题解列表 2017年11月06日 1 点赞 1 评论 1844 浏览 评分:8.0
C语言程序设计教程(第三版)课后习题10.2 (C语言代码) 摘要:解题思路:二维数组实现注意事项:参考代码:/* string sort */ #include<stdio.h> #include<string.h> #define N 3 void s…… 题解列表 2017年10月30日 2 点赞 0 评论 935 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.2 (C语言代码) 摘要:#include<stdio.h> #include<string.h> #define N 80 int main() { int i, j; char str[4]…… 题解列表 2017年10月27日 1 点赞 0 评论 1068 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main(){ char a[100],b[100],c[100]; get…… 题解列表 2017年10月22日 0 点赞 0 评论 1595 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.2 (C语言代码) 摘要:解题思路:利用字符串比较函数strcmp设这两个字符串为str1,str2,若str1==str2,则返回零;若str1<str2,则返回负数;若str1>str2,则返回正数。利用if语句判断并依次…… 题解列表 2017年10月18日 2 点赞 0 评论 2235 浏览 评分:0.0
这可能是一个假的冒泡法 摘要:解题思路:根据数字冒泡排序的思想。注意事项:字符串不可以通过赋值的方式进行传递。参考代码:#include <stdio.h>#include <string.h>int main(){ cha…… 题解列表 2017年09月05日 0 点赞 0 评论 1633 浏览 评分:9.3