C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<malloc.h>typedef struct _student{ char id[100]; …… 题解列表 2018年05月12日 0 点赞 0 评论 805 浏览 评分:0.0
浅谈辙止 摘要:解题思路:近似于1050的思路,加入的max方法用以辅助下方判断最高成绩注意事项:对Max的初值需要注意的是,将其与sum【】相比较则必须与其平行,否则将默认为0,输出也为0参考代码:import j…… 题解列表 2018年05月16日 0 点赞 0 评论 1177 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct student{ char name[20]; char num[20]; int sc…… 题解列表 2018年05月25日 0 点赞 0 评论 1374 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:参考1050,加以修改注意事项:参考代码:#include<stdio.h>struct { char number[100]; char name[100]; int a…… 题解列表 2018年07月03日 0 点赞 0 评论 1356 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <algorithm>using namespace std;struct student{ char num[2…… 题解列表 2018年07月26日 0 点赞 0 评论 922 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C++代码) 摘要:解题思路:注意事项:有点c的c++代码,涉及结构数组,结构数组成员数组,结构指针。参考代码:#include <iostream>using namespace std;struct Student{…… 题解列表 2018年08月15日 0 点赞 0 评论 1523 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>typedef struct{ char num[50]; char name[50]; …… 题解列表 2018年08月25日 0 点赞 0 评论 1035 浏览 评分:0.0
链表(帮你复习链表)解题 摘要:解题思路:利用链表进行解题,我在进行找最大的时候用的时单链表,因为循环链表效率更高一些,单是我还不熟悉链表,所以用的单链表,亲们可以是这采用循环链表注意事项:在用链表的时候我们总习惯free(p),在…… 题解列表 2019年01月05日 0 点赞 0 评论 1684 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#define IDLEN 10#define NAMELEN 10typedef struct s…… 题解列表 2018年09月28日 0 点赞 0 评论 1028 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.*; import java.math.*; public class Main { public static void ma…… 题解列表 2018年10月14日 0 点赞 0 评论 828 浏览 评分:0.0