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 评论 2264 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C语言代码)(注释清晰) 摘要:###一.解题思路 本题创建了一个student[]数组存放多组数据。input()实现输入一个学生的数据,print()也是实现输出一个学生的数据。 ###二.注意事项 要先思考好inpu…… 题解列表 2021年01月22日 0 点赞 0 评论 332 浏览 评分:0.0
[编程入门]结构体之成绩记录 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define n 100#include<string.h>struct input{ char num[20]; char name…… 题解列表 2019年05月12日 0 点赞 0 评论 409 浏览 评分:0.0
[编程入门]结构体之成绩记录 (C++代码) 摘要:解题思路: 看题注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct studen{ char xuehao[10]; char…… 题解列表 2019年04月17日 0 点赞 0 评论 523 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:解题思路: 定义结构体数组,利用for循环多次通过自定义函数填好结构体相应值注意事项:1. 选择合适的结构体变量,比如题目示例中的学号是char型而不是int型,所以使用char数组放置学号;2.在本…… 题解列表 2021年02月22日 0 点赞 0 评论 128 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#define LEN 10typedef struct student{ char id[LEN]…… 题解列表 2018年09月27日 0 点赞 0 评论 697 浏览 评分:0.0
结构体是什么也没有很理解 摘要:解题思路:第三题才完成我已经快用了一个小时,实在很不熟练而且我看了题解注意事项:参考代码:def inp(): n=int(input()) while (n>0): jl=…… 题解列表 2022年05月24日 0 点赞 0 评论 131 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录 摘要: 注意结构体+函数的调用形式!!! ```c #include #include struct stu { char num[10]; char name[20]; i…… 题解列表 2023年03月16日 0 点赞 0 评论 106 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:```c #include #include typedef struct GRADE{ char idex[100]; char name[100]; int chinese…… 题解列表 2020年08月21日 0 点赞 0 评论 199 浏览 评分: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 评论 636 浏览 评分:0.0