C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <stdlib.h> struct students{ char number[100]; …… 题解列表 2018年02月03日 0 点赞 1 评论 1037 浏览 评分:7.3
[编程入门]结构体之成绩记录-题解(Python代码) 4行代码 摘要:```python n = int(input())#输入组数值 for i in range(n):#组数 t=input().split()#输入并切割存储 print('…… 题解列表 2019年11月25日 0 点赞 2 评论 1564 浏览 评分:7.3
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:这个题目其实也可以当作一个字符问题来简化处理。 根据题意,显然此题目可以理解为,将从第二行开始的字符中的空格转换为‘,’输出,其余字符原样输出。 所以本题目也可以这么写 #inclu…… 题解列表 2020年01月04日 0 点赞 0 评论 672 浏览 评分:7.3
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:#include<stdio.h> char id[100][100]; char name[100][100]; int a[100][3]; void input(int i) { …… 题解列表 2017年07月24日 0 点赞 1 评论 467 浏览 评分:8.0
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:目前能力有限,这是输入一组就输出一组,并非题目要求的输入完n组后再输出。说到底就是太菜了。。。(2019.12.03)。目前已会结构体做法(2019.12.17),代码在下半部分 #in…… 题解列表 2019年12月03日 0 点赞 0 评论 968 浏览 评分:8.0
1050题题解(C语言代码) 摘要:```c #include #include typedef struct student { char num[10]; char name[10]; unsigned sc…… 题解列表 2020年01月04日 0 点赞 0 评论 677 浏览 评分:8.0
[编程入门]结构体之成绩记录-题解(Python代码) 摘要:凑字数凑字数凑字数凑字数凑字数 ```python n=int(input()) for i in range(0,n): print(','.join(list(input().sp…… 题解列表 2020年04月11日 0 点赞 0 评论 718 浏览 评分:8.0
[编程入门]结构体之成绩记录 摘要:```c #include struct Student{ char num[10]; char name[10]; int score[3]; }s[100]; …… 题解列表 2020年04月13日 0 点赞 0 评论 805 浏览 评分:8.0
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:两种解法: 1】: 》》单纯链表知识 #include #include typedef struct student { char s_num[10]; char n…… 题解列表 2020年12月23日 0 点赞 0 评论 439 浏览 评分:8.0
WU-C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:参考代码:#include<stdio.h> struct student { char number[20]; char name[10]; int grade[3]; }; v…… 题解列表 2017年12月11日 2 点赞 0 评论 1423 浏览 评分:8.4