根据不同结构体对象,创建数组变量来解决 摘要:解题思路:不同学生有不同的结构体对象,可利用可变数组来储存,并调用注意事项:正确使用可变数组的定义和声明参考代码:#include <iostream>#include <vecto…… 题解列表 2025年01月06日 1 点赞 0 评论 98 浏览 评分:10.0
结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct { char num[20]; char name[20]; int score[3…… 题解列表 2024年12月29日 2 点赞 0 评论 177 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录(注释清晰 简单易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct student{ …… 题解列表 2024年12月27日 2 点赞 0 评论 175 浏览 评分:10.0
[编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:a=int(input())for i in range(a): b=input().split() print(','.join(b))…… 题解列表 2024年12月01日 0 点赞 0 评论 380 浏览 评分:6.0
1050: [编程入门]结构体之成绩记录(python) 摘要:## 1050: [编程入门]结构体之成绩记录 对python来说还是很好实现的 ~~~python for i in range(int(input())): print(','…… 题解列表 2024年10月24日 0 点赞 0 评论 124 浏览 评分:0.0
题目 1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include <stdio.h> void input();void print(); int n;struct information{ char num[10]…… 题解列表 2024年10月06日 0 点赞 0 评论 432 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct Student{char number[10];char name[10];int score[3];};int main…… 题解列表 2024年10月02日 0 点赞 0 评论 167 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录(指针) 摘要:#include <stdio.h> // 引入标准输入输出头文件 // 定义学生结构体 struct Student { char number[10]; // 学号 char …… 题解列表 2024年10月02日 0 点赞 0 评论 100 浏览 评分:0.0
1050:结构体之成绩记录 #C++ 摘要:1. id 类型必须 string 2. 多行输入注意 换行符 3. ```cpp for(int i = 0; i < 3; ++i) std::cin >> student.scores…… 题解列表 2024年09月17日 0 点赞 0 评论 202 浏览 评分:9.9
1050: [编程入门]结构体之成绩记录 题解25行代码简洁版 摘要:```c #include typedef struct student { char id[100]; char name[100]; int yuwen, sh…… 题解列表 2024年08月05日 1 点赞 0 评论 77 浏览 评分:0.0