1050—————— [编程入门]结构体之成绩记录 摘要:**参考了上面大佬的题解** 整合成一行 for i in range(0,int(input())):print(','.join(list(input().split()))) #…… 题解列表 2022年09月08日 0 点赞 0 评论 178 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>struct lesson{ int s1; …… 题解列表 2022年09月07日 0 点赞 0 评论 112 浏览 评分:0.0
题目 1050: [编程入门]结构体之成绩记录 摘要:```cpp #include #include using namespace std; int n; struct node { string a, b; in…… 题解列表 2022年08月18日 0 点赞 0 评论 260 浏览 评分:9.9
动态数组指针C语言题解 摘要:解题思路:注意事项:参考代码:#include<malloc.h>typedef struct student{ char num[100]; char name[100]; int…… 题解列表 2022年08月14日 0 点赞 0 评论 142 浏览 评分:9.9
优质题解 [编程入门]结构体之成绩记录 摘要:解题思路:自定义数据类型将不同类型数据组和在一起形成一个新的数据类型Student,然后在主函数中定义一个该类型的数组变量,根据题目要求,主要功能需要自定义函数来实现,所以定义函数input来输入学生…… 题解列表 2022年07月08日 0 点赞 0 评论 2778 浏览 评分:9.0
结构体之成绩记录 摘要:解题思路:此处用的结构体数组,将结构体内容定义在主函数外面,这样子函数就能直接操作结构体的变量,分别用赋值函数与打印函数表述出注意事项:参考代码:#include"stdio.h"int n;stru…… 题解列表 2022年06月23日 0 点赞 0 评论 109 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include <stdio.h>struct stu{ char num[100]; char name[100]; int score[3];};…… 题解列表 2022年06月20日 0 点赞 1 评论 52 浏览 评分:6.0
1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:#include<stdio.h> struct inf { char num[15]; char name[15]; int a; in…… 题解列表 2022年06月20日 0 点赞 0 评论 69 浏览 评分:0.0
不用函数的,非常容易理解的,前面的题做过1/3的就能看懂 摘要:解题思路:注意事项:参考代码:a=int(input())for i in range(a): i=input().split() for l in range(len(i)): …… 题解列表 2022年05月26日 0 点赞 0 评论 203 浏览 评分:5.0
结构体是什么也没有很理解 摘要:解题思路:第三题才完成我已经快用了一个小时,实在很不熟练而且我看了题解注意事项:参考代码:def inp(): n=int(input()) while (n>0): jl=…… 题解列表 2022年05月24日 0 点赞 0 评论 129 浏览 评分:0.0