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 评论 640 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.2 (C语言代码) 摘要:解题思路:二维数组实现注意事项:参考代码:/* string sort */ #include<stdio.h> #include<string.h> #define N 3 void s…… 题解列表 2017年10月30日 2 点赞 0 评论 675 浏览 评分: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 评论 1362 浏览 评分:8.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 评论 910 浏览 评分: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 评论 582 浏览 评分:0.0
琪露诺的编程教室(C++代码) 摘要:解题思路: strcmy(a,b)---比较数组a,b,如果大于0,则表示数组a比b大;小于0,则表示数组a比b小;相等表示两个数组 相等; &nb 题解列表 2017年12月28日 0 点赞 0 评论 781 浏览 评分:0.0
琪露诺的编程教室(C++代码) 摘要:解题思路: strcmy(a,b)---比较数组a,b,如果大于0,则表示数组a比b大;小于0,则表示数组a比b小;相等表示两个数组 相等; &nb 题解列表 2017年12月28日 0 点赞 0 评论 612 浏览 评分:0.0
选择排序法!!!! 摘要:解题思路:选择排序法注意事项:字符串不可以用赋值运算符赋值用strcpy;参考代码:、#include<stdio.h>#include<string.h>int main(){ char str[3…… 题解列表 2018年01月16日 0 点赞 0 评论 568 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.2 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cmath>#include <cstring>#include <iomanip>using namespac…… 题解列表 2018年01月18日 0 点赞 0 评论 677 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.2 (C语言代码) 摘要:#include<stdio.h>#include<string.h>int main(){char *max=NULL,*min=NULL, *mid=NULL;char a[128]={0},b[…… 题解列表 2018年01月24日 2 点赞 0 评论 715 浏览 评分:0.0