[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define N 100 struct student_grade{ char student_number[N]; c…… 题解列表 2021年02月16日 0 点赞 0 评论 169 浏览 评分:9.9
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要: ```c #include int main() { int n; scanf("%d",&n); struct performance { char xuehao…… 题解列表 2020年03月07日 0 点赞 0 评论 706 浏览 评分:9.9
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:```c #include struct stu { char num[1000]; char name[1000]; float score[3]; }a[100]; …… 题解列表 2021年02月01日 0 点赞 0 评论 306 浏览 评分:9.9
结构体之成绩记录 摘要:解题思路:input()和print()要传入次数N和结构体*stu或者syu[];若结构体定义的全局变量,则不需要传入结构体注意事项:参考代码:#include <iostream>using na…… 题解列表 2022年10月22日 0 点赞 0 评论 83 浏览 评分:9.9
C语言--study||O.o 摘要:参考代码:include<stdio.h> struct student { char number[20]; char name[10]; int subject1…… 题解列表 2024年01月22日 0 点赞 0 评论 113 浏览 评分:9.9
[编程入门]结构体之成绩记录 (Python代码) 摘要:没看到python解题的我就贴一下自己的,不是很简洁,有优化的欢迎贴出来学习。 ```python def grade_in_pri(n): num=[] name=[] …… 题解列表 2020年03月15日 0 点赞 0 评论 733 浏览 评分:9.9
1050: [编程入门]结构体之成绩记录 摘要:```cpp #include struct student{ char id[100]; char name[100]; int score[3]; }s; void input…… 题解列表 2022年12月06日 0 点赞 0 评论 134 浏览 评分:9.9
编写题解 1050: [编程入门]结构体之成绩记录 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args…… 题解列表 2024年03月08日 0 点赞 0 评论 256 浏览 评分:9.9
高级无磨损 崭新出厂 摘要:解题思路:注意事项:可以把成绩定义成int型参考代码:#include <stdio.h>struct Student{ char num[20]; char name[20]; float scor…… 题解列表 2024年04月02日 0 点赞 0 评论 131 浏览 评分:9.9
1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; //创建学生结构体 struct Student…… 题解列表 2023年09月24日 0 点赞 0 评论 55 浏览 评分:9.9