结构体-学生成绩录入 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h> struct Ymd{ char xh[50]; char name[50]; int a[3…… 题解列表 2022年05月16日 0 点赞 0 评论 121 浏览 评分:9.9
1050:[编程入门]结构体之成绩记录 摘要:```c #include #define Max 100 typedef struct sort{ char id[100]; char name[100]; int score…… 题解列表 2022年05月09日 0 点赞 0 评论 122 浏览 评分:0.0
[编程入门]结构体之成绩记录 题解 摘要:解题思路:这题就是简单的结构体输入输出。注意事项:中间要用“,”分隔开,最后一个科目后不用“,”要换行。参考代码:#include<bits/stdc++.h>using namespace std;…… 题解列表 2022年05月06日 0 点赞 0 评论 72 浏览 评分:0.0
结构体之成绩记录(简易) 摘要:解题思路:根据题目样例,我们可以发现输入和输出差的是数之间的逗号,所以我们可以直接进行输出;(其实很想吐槽啊)注意事项:是英文逗号参考代码:#include<bits/stdc++.h>using n…… 题解列表 2022年05月01日 0 点赞 0 评论 203 浏览 评分:9.9
编写题解 1050: [编程入门]结构体之成绩记录——六行代码 摘要:解题思路:注意事项:参考代码:n = int(input())for i in range(n): l = list(map(str,input().split())) for j in …… 题解列表 2022年04月11日 0 点赞 0 评论 109 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct student{ string id; string name; int …… 题解列表 2022年03月21日 0 点赞 0 评论 169 浏览 评分:0.0
结构体之成绩记录(Java语言) 摘要:解题思路:注意事项:参考代码:public static class student{ private String No=""; private String Name=""; …… 题解列表 2022年03月20日 0 点赞 0 评论 189 浏览 评分:9.9
用函数 简单题解(C语言) 摘要:解题思路:分三部分 ,①结构体定义②输入函数③输出函数注意事项:传入函数时,是指针而非结构体参考代码:#include<stdio.h> struct student_data{ char num[3…… 题解列表 2022年03月18日 0 点赞 0 评论 101 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 摘要:解题思路:一开始想用class代替struct,但是没想好怎么建对象的数组,就用struct了,实际上用class好像思路也是一样的。注意事项:(1)strcpy()函数要加<cstring>头。(2…… 题解列表 2022年03月07日 0 点赞 0 评论 277 浏览 评分:9.9
编写题解 1050: [编程入门]结构体之成绩记录(C语言简单代码) 摘要:解题思路:注意事项: 结构体数组参考代码:#include<stdio.h>#include<stdlib.h>struct student //声明结构体{ char …… 题解列表 2022年03月03日 0 点赞 0 评论 226 浏览 评分:0.0