C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:#include<stdio.h>struct student{char num[100]; char name[100]; int a; int b; int c;}s[100];int i;voi…… 题解列表 2017年06月11日 2 点赞 0 评论 1249 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:#include<stdio.h> char id[100][100]; char name[100][100]; int a[100][3]; int t,sum1=0; int big(…… 题解列表 2017年07月24日 0 点赞 0 评论 1114 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路: 通过结构体和数组来实现。首先通过结构体数组计算出总成绩,然后根据学生个数,输出每课的平均成绩。然后根据数组比较的方式,找出学生成绩和最大的那个数,及它的下标,通过下标输出成绩最好学生…… 题解列表 2017年08月22日 0 点赞 0 评论 1142 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:#include<stdio.h>struct st{ char xuehao[20]; char name[20]; int a1; int a2; int a3;}; int main()…… 题解列表 2017年08月23日 0 点赞 0 评论 812 浏览 评分:2.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:#include <stdio.h>struct stu{ char name[50], num[50]; int a, b, c;};void input(struct stu *p){ scanf…… 题解列表 2017年08月28日 2 点赞 0 评论 1642 浏览 评分:4.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:#include <stdio.h>#include <stdlib.h>struct Student{char name[50];char id[20];int a;int b;int c;}buf…… 题解列表 2017年09月01日 0 点赞 0 评论 1029 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct { char number[100],name[100]; int a,b,c,sum; }stu[100]…… 题解列表 2017年10月22日 16 点赞 4 评论 1539 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:1.写一个input函数,利用结构体指针*p依次赋值,循环由定义的结构体数组stu1和输入的n控制;2.将定义的结构体数组stu1存储步骤1中相应的结构体字段值;3.利用一个if语句去求出三…… 题解列表 2017年10月27日 1 点赞 0 评论 1216 浏览 评分:6.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:/* 哎。。 */ #include<stdio.h> #define N 100 struct student { char num[10]; …… 题解列表 2017年10月31日 0 点赞 0 评论 1525 浏览 评分:9.9
WU-C语言程序设计教程(第三版)课后习题11.5 (C语言代码)(结构体实现) 摘要:解题思路:这题用的是结构体来做的 想学的可以看看参考代码:#include<stdio.h> struct student { char number[20]; char name[10…… 题解列表 2017年12月12日 2 点赞 0 评论 821 浏览 评分:0.0