[编程入门]结构体之成绩记录-题解(C++代码) 摘要:```cpp #include using namespace std; typedef struct Student{ char num[30]; char name[3…… 题解列表 2020年04月06日 0 点赞 0 评论 318 浏览 评分:0.0
结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main() { struct student { string Xue…… 题解列表 2023年09月29日 0 点赞 0 评论 110 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int n;scanf("%d",&n);struct performance{ char xuehao[1…… 题解列表 2020年11月23日 0 点赞 0 评论 214 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct student { char sno[20]; char sname[20]; int cj1; i…… 题解列表 2018年05月06日 0 点赞 0 评论 490 浏览 评分:0.0
题目 1050: [编程入门]结构体之成绩记录 摘要:#include <stdio.h> // 定义学生结构体 typedef struct { char id[20]; char name[20]; int s…… 题解列表 2024年03月30日 0 点赞 0 评论 78 浏览 评分:0.0
c代码记录之结构体成绩记录--函数传参 摘要: #include struct Student{ char xuehao[30],name[30]; int a,b,c; }; …… 题解列表 2023年12月29日 0 点赞 0 评论 96 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:解题思路:一步一步来注意事项:比较菜,不喜勿喷参考代码:#include<math.h>#include<string.h>#include<stdlib.h> #include <stdio.h>s…… 题解列表 2020年09月04日 0 点赞 0 评论 388 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C++代码) 摘要:#include #include using namespace std; class stu { public: void inputs(); void print(); pr…… 题解列表 2019年12月27日 0 点赞 0 评论 298 浏览 评分:0.0
[编程入门]结构体之成绩记录 (C语言代码)水经验!! 摘要:解题思路:随便你!!注意事项:无!参考代码:#include<stdio.h>struct stu{ char num[10]; char name[20]; int a; int b; int c;…… 题解列表 2019年05月12日 0 点赞 0 评论 471 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:#include <stdio.h>int intput(struct Student *p,int len);int age(struct Student *p);int compare(struc…… 题解列表 2017年09月06日 0 点赞 0 评论 1158 浏览 评分:0.0