: [编程入门]结构体之成绩记录c程序 摘要:#include<stdio.h>struct dey{ int year; int month; int day; }runnian;int main(){// struct demo run…… 题解列表 2024年07月26日 0 点赞 0 评论 176 浏览 评分:2.0
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 评论 1038 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static String[] input(){ …… 题解列表 2017年07月09日 5 点赞 2 评论 1333 浏览 评分: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 评论 1122 浏览 评分: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 评论 1135 浏览 评分: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 评论 1167 浏览 评分: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 评论 1266 浏览 评分: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 评论 786 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct student{ char id[50]; char name[50]; int …… 题解列表 2017年10月25日 1 点赞 0 评论 950 浏览 评分: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 评论 2360 浏览 评分:0.0