C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#define IDLEN 10#define NAMELEN 10typedef struct s…… 题解列表 2018年09月28日 0 点赞 0 评论 662 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>typedef struct{ char num[50]; char name[50]; …… 题解列表 2018年08月25日 0 点赞 0 评论 625 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C++代码) 摘要:解题思路:注意事项:有点c的c++代码,涉及结构数组,结构数组成员数组,结构指针。参考代码:#include <iostream>using namespace std;struct Student{…… 题解列表 2018年08月15日 0 点赞 0 评论 944 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <algorithm>using namespace std;struct student{ char num[2…… 题解列表 2018年07月26日 0 点赞 0 评论 719 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:参考1050,加以修改注意事项:参考代码:#include<stdio.h>struct { char number[100]; char name[100]; int a…… 题解列表 2018年07月03日 0 点赞 0 评论 866 浏览 评分: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 评论 801 浏览 评分:0.0
浅谈辙止 摘要:解题思路:近似于1050的思路,加入的max方法用以辅助下方判断最高成绩注意事项:对Max的初值需要注意的是,将其与sum【】相比较则必须与其平行,否则将默认为0,输出也为0参考代码:import j…… 题解列表 2018年05月16日 0 点赞 0 评论 882 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<malloc.h>typedef struct _student{ char id[100]; …… 题解列表 2018年05月12日 0 点赞 0 评论 620 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct student { char sno[20]; char sname[20]; int cj1; …… 题解列表 2018年05月06日 0 点赞 0 评论 783 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:1、最高分的学生不一定只有一个参考代码:#include<stdio.h> #include<malloc.h> typedef struct _student_info_…… 题解列表 2018年05月02日 0 点赞 0 评论 709 浏览 评分:0.0