1050: [编程入门]结构体之成绩记录 摘要:#include<stdio.h>struct data{ char xuehao[100]; char name[100]; …… 题解列表 2025年08月25日 0 点赞 0 评论 25 浏览 评分:0.0
结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct Person{ char StudentID[5]; char…… 题解列表 2025年04月18日 0 点赞 0 评论 549 浏览 评分:0.0
依次编写函数实现特定功能 摘要:解题思路:注意事项:注意格式控制符,用逗号分隔开参考代码:#include<bits/stdc++.h>using namespace std;struct student_info{&n…… 题解列表 2025年04月10日 1 点赞 0 评论 335 浏览 评分:10.0
菲暃要加油 摘要:参考代码:n=eval(input())foriinrange(n):b=input().split()…… 题解列表 2025年02月08日 0 点赞 0 评论 296 浏览 评分:0.0
根据不同结构体对象,创建数组变量来解决 摘要:解题思路:不同学生有不同的结构体对象,可利用可变数组来储存,并调用注意事项:正确使用可变数组的定义和声明参考代码:#include <iostream>#include <vecto…… 题解列表 2025年01月06日 2 点赞 0 评论 595 浏览 评分:10.0
结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct { char num[20]; char name[20]; int score[3…… 题解列表 2024年12月29日 3 点赞 0 评论 758 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录(注释清晰 简单易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct student{ …… 题解列表 2024年12月27日 5 点赞 0 评论 748 浏览 评分:10.0
[编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:a=int(input())for i in range(a): b=input().split() print(','.join(b))…… 题解列表 2024年12月01日 0 点赞 0 评论 603 浏览 评分:6.0
1050: [编程入门]结构体之成绩记录(python) 摘要:## 1050: [编程入门]结构体之成绩记录 对python来说还是很好实现的 ~~~python for i in range(int(input())): print(','…… 题解列表 2024年10月24日 0 点赞 0 评论 284 浏览 评分:0.0
题目 1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include <stdio.h> void input();void print(); int n;struct information{ char num[10]…… 题解列表 2024年10月06日 0 点赞 0 评论 700 浏览 评分:0.0