C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:#include<stdio.h> struct student{ char num[50]; char name[50]; int s1; int s2; int s3…… 题解列表 2017年06月13日 3 点赞 2 评论 1034 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static String[] input(){ …… 题解列表 2017年07月09日 5 点赞 2 评论 1330 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct student{ char num[50]; char name[50]; int a,…… 题解列表 2017年08月01日 2 点赞 0 评论 1118 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:#include<stdio.h>struct st //结构体类型定义, { char xuehao[20]; char xingming[20]; int a1; int a2; i…… 题解列表 2017年08月22日 5 点赞 1 评论 1132 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:参考代码:#include <stdio.h>#include <stdlib.h>struct student{char id[20];char name[20];int a;int b;int c…… 题解列表 2017年08月22日 0 点赞 0 评论 1164 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:#include <stdio.h>int intput(struct Student *p,int len);int age(struct Student *p);int compare(struc…… 题解列表 2017年09月06日 0 点赞 0 评论 1261 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct{ char number[100],name[100]; int a,b,c; }stu[100]; vo…… 题解列表 2017年10月22日 0 点赞 0 评论 783 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct student{ char id[50]; char name[50]; int …… 题解列表 2017年10月25日 1 点赞 0 评论 947 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:#include <stdio.h> typedef struct Info { char name[10]; char id[10]; int grade[3]; }Info;…… 题解列表 2017年11月23日 1 点赞 0 评论 2357 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define N 100struct student{ char num[10]; char name[10]; i…… 题解列表 2017年12月17日 0 点赞 0 评论 783 浏览 评分:0.0