结构体-学生成绩录入 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h> struct Ymd{ char xh[50]; char name[50]; int a[3…… 题解列表 2022年05月16日 0 点赞 0 评论 129 浏览 评分:9.9
结构体是什么也没有很理解 摘要:解题思路:第三题才完成我已经快用了一个小时,实在很不熟练而且我看了题解注意事项:参考代码:def inp(): n=int(input()) while (n>0): jl=…… 题解列表 2022年05月24日 0 点赞 0 评论 131 浏览 评分: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 评论 208 浏览 评分:5.0
1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:#include<stdio.h> struct inf { char num[15]; char name[15]; int a; in…… 题解列表 2022年06月20日 0 点赞 0 评论 73 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include <stdio.h>struct stu{ char num[100]; char name[100]; int score[3];};…… 题解列表 2022年06月20日 0 点赞 1 评论 56 浏览 评分:6.0
结构体之成绩记录 摘要:解题思路:此处用的结构体数组,将结构体内容定义在主函数外面,这样子函数就能直接操作结构体的变量,分别用赋值函数与打印函数表述出注意事项:参考代码:#include"stdio.h"int n;stru…… 题解列表 2022年06月23日 0 点赞 0 评论 121 浏览 评分:0.0
优质题解 [编程入门]结构体之成绩记录 摘要:解题思路:自定义数据类型将不同类型数据组和在一起形成一个新的数据类型Student,然后在主函数中定义一个该类型的数组变量,根据题目要求,主要功能需要自定义函数来实现,所以定义函数input来输入学生…… 题解列表 2022年07月08日 0 点赞 0 评论 2786 浏览 评分:9.0
动态数组指针C语言题解 摘要:解题思路:注意事项:参考代码:#include<malloc.h>typedef struct student{ char num[100]; char name[100]; int…… 题解列表 2022年08月14日 0 点赞 0 评论 147 浏览 评分:9.9
题目 1050: [编程入门]结构体之成绩记录 摘要:```cpp #include #include using namespace std; int n; struct node { string a, b; in…… 题解列表 2022年08月18日 0 点赞 0 评论 267 浏览 评分:9.9
编写题解 1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>struct lesson{ int s1; …… 题解列表 2022年09月07日 0 点赞 0 评论 116 浏览 评分:0.0