[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:解题思路:一步一步来注意事项:比较菜,不喜勿喷参考代码:#include<math.h>#include<string.h>#include<stdlib.h> #include <stdio.h>s…… 题解列表 2020年09月04日 0 点赞 0 评论 389 浏览 评分:0.0
1050-结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct student{ char num[10]; char name…… 题解列表 2022年10月06日 0 点赞 0 评论 74 浏览 评分:0.0
结构清晰明了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>typedef struct{ char id[20]; char name[20]…… 题解列表 2024年07月31日 0 点赞 0 评论 80 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 摘要:import java.io.*; /** * 注意不能前面用 cin.nextToken() 后面用 in.readline(),用 in.readline() 必须从头用到尾,否则会阻塞…… 题解列表 2021年12月11日 0 点赞 0 评论 190 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:```c #include struct student { char num[20]; char name[20]; int score; int score1; int …… 题解列表 2020年02月01日 0 点赞 0 评论 390 浏览 评分:0.0
题目 1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include <stdio.h> void input();void print(); int n;struct information{ char num[10]…… 题解列表 2024年10月06日 0 点赞 0 评论 433 浏览 评分:0.0
无需指针 无需指针 无需指针 最最最简单易懂的解题思路!!! 摘要:解题思路:根据题目要求,需要输n个学生的各项数据,且需要定义一个结构体包含学生的各项数据。那我们可以将一个学生的各项数据作为一个整体,n个学生的话就需要n个整体,所以我们就可以定义一个结构体数组,每个…… 题解列表 2023年11月30日 0 点赞 0 评论 123 浏览 评分:0.0
此题不适用字符指针的说明 摘要:之所以不能用char*是因为字符指针不能操作该地址上的值,只能重新指向另一个地址!!!scanf相当于把这块地址上原有的值重写了,这是字符指针做不到的,因此只能用字符数组!!参考代码:#include…… 题解列表 2023年08月10日 0 点赞 0 评论 146 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录(C语言简单代码) 摘要:解题思路:注意事项: 结构体数组参考代码:#include<stdio.h>#include<stdlib.h>struct student //声明结构体{ char …… 题解列表 2022年03月03日 0 点赞 0 评论 227 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要: #include struct ble{ char a[100]; //表示学号 char b[100]; //表示姓名 int c[3]; …… 题解列表 2020年05月21日 0 点赞 0 评论 231 浏览 评分:0.0