C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<malloc.h>typedef struct _student{ char id[100]; …… 题解列表 2018年05月12日 0 点赞 0 评论 725 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct student { char sno[20]; char sname[20]; int cj1; …… 题解列表 2018年05月06日 0 点赞 0 评论 1362 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:1、最高分的学生不一定只有一个参考代码:#include<stdio.h> #include<malloc.h> typedef struct _student_info_…… 题解列表 2018年05月02日 0 点赞 0 评论 944 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct Student{ char name[20];//名字 double grade_first;//第一科成绩 double…… 题解列表 2018年04月20日 2 点赞 0 评论 1590 浏览 评分: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 评论 992 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (Java代码) 摘要:解题思路:思路看代码。啦啦!注意事项:代码挺多,注意变量区分参考代码:import java.util.Scanner;public class TT1050 { public static void…… 题解列表 2018年04月11日 0 点赞 0 评论 1222 浏览 评分: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 评论 1439 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)和上一题一样 输出不同 思路清晰 摘要:参考代码如下:#include <stdio.h> #include <stdlib.h> #include <string.h> //定义一个学生信息结构体 typedef struct…… 题解列表 2018年03月29日 2 点赞 0 评论 1678 浏览 评分: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 评论 862 浏览 评分:8.0