编写题解 1050: [编程入门]结构体之成绩记录 摘要: #include //#define N 100 struct score { char Id[10]; char Name[10]; int Engli…… 题解列表 2021年03月07日 0 点赞 0 评论 235 浏览 评分:9.9
优质题解 1050: [编程入门]结构体之成绩记录 (C/C++) 摘要:解题思路:透过题意看本质,这题其实就是数组的输入与输出只不过数组里放得是结构体定义一个结构体,里面储存这学号,名字,与三科成绩输入学生个数 n ,然后定义一个大小为 n 的结构体数组,方法和普通的数组…… 题解列表 2021年03月21日 0 点赞 4 评论 1658 浏览 评分:6.4
超简单解法,28行 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct student{ string xuehao; string name; int…… 题解列表 2021年03月28日 0 点赞 0 评论 112 浏览 评分:0.0
优质题解 用最简单的C语言做出结构体之成绩记录 摘要:解题思路:1.定义结构体变量,并以此变量定义一个二维数组。 2.先定义并输入二维数组的行数,之后再用正常的input和output输入输出即可。 3…… 题解列表 2021年04月20日 0 点赞 20 评论 4321 浏览 评分:8.8
结构体之成绩记录(参考置顶,仅作记录) 摘要:#include<stdio.h> #include<mm_malloc.h> typedef struct student_info { char s_id[16]; …… 题解列表 2021年07月19日 0 点赞 0 评论 215 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C语言) 摘要: ```c #include struct a{ char b[20]; char c[20]; int d; int e; int f; }; struct a stu…… 题解列表 2021年09月09日 0 点赞 0 评论 161 浏览 评分:0.0
[编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include <stdio.h>struct stu{ char num[100]; char name[100]; int score[3];};…… 题解列表 2021年11月11日 0 点赞 0 评论 152 浏览 评分:0.0
简单解题法2 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct xinxi { /*定义结构体*/ char xuehao[1…… 题解列表 2021年11月12日 0 点赞 0 评论 133 浏览 评分:0.0
[编程入门]结构体之成绩记录--------(Python) 摘要:```python n=int(input()) t=[] class sun1: def input(): s=list(map(str,input().split…… 题解列表 2021年11月17日 0 点赞 0 评论 256 浏览 评分:0.0
结构体之成绩记录(C++) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct student{ char id[20]; char name[20]; int…… 题解列表 2021年12月01日 0 点赞 0 评论 366 浏览 评分:9.9