编写题解 1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct student{ string id; string name; int …… 题解列表 2022年03月21日 0 点赞 0 评论 169 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>struct student{ char number[15]; c…… 题解列表 2020年11月18日 0 点赞 0 评论 316 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:#include<stdio.h>struct jiegouti{ char a[100]; char b[100]; int c[3];};void input(struct jiegouti *p…… 题解列表 2019年02月12日 0 点赞 0 评论 397 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>struct lesson{ int s1; …… 题解列表 2022年09月07日 0 点赞 0 评论 112 浏览 评分:0.0
结构体之成绩记录 摘要: #include #include #include #include using namespace std; struct demo …… 题解列表 2022年10月12日 0 点赞 0 评论 123 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 题解25行代码简洁版 摘要:```c #include typedef struct student { char id[100]; char name[100]; int yuwen, sh…… 题解列表 2024年08月05日 1 点赞 0 评论 78 浏览 评分: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 struct ble{ char a[100]; //表示学号 char b[100]; //表示姓名 int c[3]; …… 题解列表 2020年05月21日 0 点赞 0 评论 249 浏览 评分:0.0
[编程入门]结构体之成绩记录 (C语言代码)(结构体数组中的整型数组怎么输入??已解决) 摘要:#include<stdio.h> struct stu{ char number[10]; char name[10]; int score[3]; }STU…… 题解列表 2019年05月11日 0 点赞 0 评论 632 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录(python) 摘要:## 1050: [编程入门]结构体之成绩记录 对python来说还是很好实现的 ~~~python for i in range(int(input())): print(','…… 题解列表 2024年10月24日 0 点赞 0 评论 125 浏览 评分:0.0