两种方法实现成绩记录 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<string.h>struct student { c…… 题解列表 2023年10月29日 0 点赞 0 评论 129 浏览 评分:9.9
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define N 100 struct student_grade{ char student_number[N]; c…… 题解列表 2021年02月16日 0 点赞 0 评论 164 浏览 评分:9.9
1050: [编程入门]结构体之成绩记录 摘要:```cpp #include struct student{ char id[100]; char name[100]; int score[3]; }s; void input…… 题解列表 2022年12月06日 0 点赞 0 评论 129 浏览 评分:9.9
简洁明了的结构体之成绩记录 摘要:解题思路:注意事项:结构体中字符串赋值需要用到<string.h>库函数中的strcpy来赋值,主函数中的(struct student s[20];)用来定义结构体中的学生数目的数组,因为不确定输入…… 题解列表 2021年12月20日 0 点赞 0 评论 248 浏览 评分:9.9
c语言简洁的解题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>main(){ int n,i=0; scanf("%d",&n); struct stu { char id[255]; char…… 题解列表 2024年07月19日 0 点赞 0 评论 129 浏览 评分:9.9
1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; //创建学生结构体 struct Student…… 题解列表 2023年09月24日 0 点赞 0 评论 51 浏览 评分:9.9
还算还算还算清晰 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void input();void print();struct student{ char number[100]; ch…… 题解列表 2024年03月17日 0 点赞 0 评论 85 浏览 评分:9.9
[编程入门]结构体之成绩记录-题解(Python代码) 摘要:python的对象其实相当于结构体。 定义一个学生类,包含输入函数和输出函数。 分数score是一个列表,包含三个数。 每次输入一次,就创建一个对象然后用append函数放到列表中l,存的都是S…… 题解列表 2019年11月25日 0 点赞 0 评论 1282 浏览 评分:9.9
[编程入门]结构体之成绩记录 摘要:```cpp #include using namespace std; class student { public: string number; strin…… 题解列表 2023年03月20日 0 点赞 0 评论 95 浏览 评分:9.9
结构体之成绩记录(Java语言) 摘要:解题思路:注意事项:参考代码:public static class student{ private String No=""; private String Name=""; …… 题解列表 2022年03月20日 0 点赞 0 评论 189 浏览 评分:9.9