结构体之成绩记录 简洁易懂 摘要:解题思路:注意事项:参考代码:n = int(input())s = [] # 存放学生记录for i in range(n): s.append(input().split())for i i…… 题解列表 2024年05月19日 0 点赞 0 评论 155 浏览 评分:0.0
C++结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <algorithm>#include<string>#include<vector> using namespa…… 题解列表 2024年05月20日 0 点赞 0 评论 231 浏览 评分:0.0
1050成绩记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct student{ char xuehao[20]; char xinming[20]; int a; in…… 题解列表 2024年05月23日 0 点赞 0 评论 116 浏览 评分:0.0
无聊的星期六 摘要:n=int(input()) for i in range(n): x=list(input().split()) print(','.join(str(i) f…… 题解列表 2024年05月25日 0 点赞 0 评论 365 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct a{ char s1[9]; char s2[9]; int a1; int …… 题解列表 2024年06月12日 0 点赞 0 评论 208 浏览 评分:0.0
结构清晰明了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>typedef struct{ char id[20]; char name[20]…… 题解列表 2024年07月31日 0 点赞 0 评论 150 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 题解25行代码简洁版 摘要:```c #include typedef struct student { char id[100]; char name[100]; int yuwen, sh…… 题解列表 2024年08月05日 1 点赞 0 评论 162 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录(指针) 摘要:#include <stdio.h> // 引入标准输入输出头文件 // 定义学生结构体 struct Student { char number[10]; // 学号 char …… 题解列表 2024年10月02日 0 点赞 0 评论 235 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct Student{char number[10];char name[10];int score[3];};int main…… 题解列表 2024年10月02日 0 点赞 0 评论 252 浏览 评分:0.0
题目 1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include <stdio.h> void input();void print(); int n;struct information{ char num[10]…… 题解列表 2024年10月06日 0 点赞 0 评论 589 浏览 评分:0.0