[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要:```c #include int main() { int N; scanf("%d",&N); struct student { char id[20]; char n…… 题解列表 2020年05月29日 0 点赞 0 评论 325 浏览 评分:0.0
[编程入门]结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student{ char num[100]; char name[100]; int score[3]…… 题解列表 2022年04月17日 0 点赞 0 评论 212 浏览 评分:0.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 (Java语言代码) 摘要:解题思路:利用String类型的二位数组,进行数据的存储,将分数最大的编号做标记,最后在数组中找到该编号的数据即可注意事项:参考代码:import java.util.Scanner; publ…… 题解列表 2018年10月30日 0 点赞 0 评论 476 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要:解题思路:多组数据,---->结构体数组注意事项:参考代码:#include<stdio.h> struct Student { char sno[20]; char name[20];…… 题解列表 2020年11月10日 0 点赞 0 评论 357 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:1、最高分的学生不一定只有一个参考代码:#include<stdio.h> #include<malloc.h> typedef struct _student_info_…… 题解列表 2018年05月02日 0 点赞 0 评论 636 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要:```c #include struct student{ char sno[20]; char name[20]; int chinese; int math; int e…… 题解列表 2019年11月30日 0 点赞 0 评论 441 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要:#include #include int main() { int n, index = 0, F1 = 0, F2 = 0, F3 = 0, SUM = 0; &nbs 题解列表 2020年11月28日 0 点赞 0 评论 299 浏览 评分:0.0
[编程入门]结构体之成绩统计2java 摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { S…… 题解列表 2023年09月22日 0 点赞 0 评论 180 浏览 评分: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 评论 648 浏览 评分:0.0