两种方法实现成绩记录 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<string.h>struct student { c…… 题解列表 2023年10月29日 0 点赞 0 评论 128 浏览 评分:9.9
结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct DATA{ char Numb[100]; char Name[20]; int sco…… 题解列表 2023年10月14日 0 点赞 0 评论 43 浏览 评分:0.0
结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main() { struct student { string Xue…… 题解列表 2023年09月29日 0 点赞 0 评论 109 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; //创建学生结构体 struct Student…… 题解列表 2023年09月24日 0 点赞 0 评论 50 浏览 评分:9.9
c语言结构体练习题输入n个学生成绩输出成绩 摘要:解题思路:注意事项:在看题解的时候我发现许多写的都比较复杂,也有的使用到了指针;我这个代码比较简洁;思路如下:先定义结构体,学号和名字有字母就不能使用int;成绩一般是数字所以使用int;然后在主函数…… 题解列表 2023年09月23日 0 点赞 0 评论 332 浏览 评分:0.0
结构体之成绩记录(结构体指针) 摘要: 注意事项: 结构体变量用点(.)来访问成员的方法,结构体指针是通过箭头(->) 参考代码: ```c #include struct m { char sno[100…… 题解列表 2023年09月03日 0 点赞 0 评论 76 浏览 评分:0.0
[编程入门]超精简28行代码解决(容易理解) 摘要:解题思路:使用结构指针存放信息注意事项:参考代码:struct stu { char xh[10]; char xm[10]; int xf[3]; }; char …… 题解列表 2023年08月19日 0 点赞 0 评论 76 浏览 评分:4.0
1050: [编程入门]结构体之成绩记录,c++代码实现 摘要:#1050: [编程入门]结构体之成绩记录 ```cpp #include using namespace std; struct student{//用一个结构体来储存学生的信息 str…… 题解列表 2023年08月15日 0 点赞 0 评论 71 浏览 评分:0.0
此题不适用字符指针的说明 摘要:之所以不能用char*是因为字符指针不能操作该地址上的值,只能重新指向另一个地址!!!scanf相当于把这块地址上原有的值重写了,这是字符指针做不到的,因此只能用字符数组!!参考代码:#include…… 题解列表 2023年08月10日 0 点赞 0 评论 145 浏览 评分:0.0
[编程入门]结构体之成绩记录 摘要:解题思路:偷懒一下,写一个函数注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct student{ string xh,nam…… 题解列表 2023年05月20日 0 点赞 0 评论 55 浏览 评分:0.0