C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<malloc.h>typedef struct _student{ char id[100]; …… 题解列表 2018年05月12日 0 点赞 0 评论 724 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct student { char sno[20]; char sname[20]; int cj1; …… 题解列表 2018年05月06日 0 点赞 0 评论 1354 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:1、最高分的学生不一定只有一个参考代码:#include<stdio.h> #include<malloc.h> typedef struct _student_info_…… 题解列表 2018年05月02日 0 点赞 0 评论 941 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct Student{ char name[20];//名字 double grade_first;//第一科成绩 double…… 题解列表 2018年04月20日 2 点赞 0 评论 1584 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>struct stu{ char num[20]; char n…… 题解列表 2018年04月14日 0 点赞 0 评论 990 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (Java代码) 摘要:解题思路:思路看代码。啦啦!注意事项:代码挺多,注意变量区分参考代码:import java.util.Scanner;public class TT1050 { public static void…… 题解列表 2018年04月11日 0 点赞 0 评论 1220 浏览 评分:0.0
容易理解 摘要:#include<stdio.h> struct student { char number[20]; char name[10]; int grade[3]; }…… 题解列表 2018年04月08日 10 点赞 2 评论 954 浏览 评分:9.3
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct Stu{ char sno[20]; char name[20]; int grade[3];};inp…… 题解列表 2018年04月03日 0 点赞 0 评论 1430 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)和上一题一样 输出不同 思路清晰 摘要:参考代码如下:#include <stdio.h> #include <stdlib.h> #include <string.h> //定义一个学生信息结构体 typedef struct…… 题解列表 2018年03月29日 2 点赞 0 评论 1670 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)结构指针的运用 摘要:#include <stdio.h>#define N 100struct stu {char name[10];char num[10];int score[3];};int i;void get(…… 题解列表 2018年03月06日 1 点赞 0 评论 860 浏览 评分:8.0