C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct Stu{ char sno[20]; char name[20]; int grade[3];};inp…… 题解列表 2018年04月03日 0 点赞 0 评论 619 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct student{ char num[50]; char name[50]; int a,…… 题解列表 2017年08月01日 2 点赞 0 评论 994 浏览 评分:0.0
[编程入门]结构体之成绩记录 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student{ char num[100]; char name[100]; int grade1; int grade…… 题解列表 2019年05月13日 0 点赞 0 评论 525 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C++代码) 摘要:解题思路:用c++感觉很简单,因为有cin cout。注意事项:参考代码:#include<iostream>using namespace std;struct GROUP{ char num[1…… 题解列表 2019年01月08日 0 点赞 0 评论 608 浏览 评分:0.0
结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct DATA{ char Numb[100]; char Name[20]; int sco…… 题解列表 2023年10月14日 0 点赞 0 评论 44 浏览 评分:0.0
[编程入门]结构体之成绩记录 题解 摘要:解题思路:这题就是简单的结构体输入输出。注意事项:中间要用“,”分隔开,最后一个科目后不用“,”要换行。参考代码:#include<bits/stdc++.h>using namespace std;…… 题解列表 2022年05月06日 0 点赞 0 评论 72 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:#include<stdio.h> struct inf { char num[15]; char name[15]; int a; in…… 题解列表 2022年06月20日 0 点赞 0 评论 69 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:解题思路:结构的基本操作,利用循环给结构中成员赋值注意事项:可以利用malloc函数定义结构数组参考代码:#include <stdio.h>#include <stdlib.h>//malloc函数…… 题解列表 2021年01月22日 0 点赞 0 评论 272 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录(Python) 摘要:解题思路:我认为核心难点就是如何用列表表示“二维数组”,如果知道如何表示的话,就差不多了。注意事项:无参考代码:n = int(input())ls =[]for i in range(n): …… 题解列表 2024年01月01日 0 点赞 0 评论 147 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:思路其实很简单,不需要用到指针,完全用基本的结构就能完成 ```c #include struct student { char num[20]; //注意一下这里学号的类型有…… 题解列表 2020年10月12日 0 点赞 0 评论 226 浏览 评分:0.0