[编程入门]结构体之成绩记录 (C语言代码) 摘要:题目描述现有有N个学生的数据记录,每个记录包括学号、姓名、三科成绩。 编写一个函数input,用来输入一个学生的数据记录。 编写一个函数print,打印一个学生的数据记录。 在主函数调用这两个函数,读…… 题解列表 2019年05月07日 0 点赞 0 评论 1185 浏览 评分:0.0
[编程入门]结构体之成绩记录 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void input();void print();struct student{ char num[20];char name[10]…… 题解列表 2019年05月05日 0 点赞 0 评论 732 浏览 评分:0.0
[编程入门]结构体之成绩记录 (C++代码) 摘要:解题思路: 看题注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct studen{ char xuehao[10]; char…… 题解列表 2019年04月17日 0 点赞 0 评论 688 浏览 评分:0.0
[编程入门]结构体之成绩记录 (C语言代码)不用函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char xue[100],name[100]; int x1,x2,x3,i,n; s…… 题解列表 2019年04月14日 0 点赞 1 评论 538 浏览 评分:3.6
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct Student{ char num[20]; char name[20];…… 题解列表 2019年04月11日 0 点赞 0 评论 449 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码)单向链表 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#define length sizeof(struct STUDENT)struct STUDEN…… 题解列表 2019年02月24日 0 点赞 0 评论 463 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:#include<stdio.h>struct jiegouti{ char a[100]; char b[100]; int c[3];};void input(struct jiegouti *p…… 题解列表 2019年02月12日 0 点赞 0 评论 768 浏览 评分:0.0
最简单~题解1050:C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:参考代码:#include <stdio.h> //#include <string.h> typedef struct student { int a,b,c; char …… 题解列表 2019年01月22日 0 点赞 0 评论 768 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C++代码) 摘要:解题思路:用c++感觉很简单,因为有cin cout。注意事项:参考代码:#include<iostream>using namespace std;struct GROUP{ char num[1…… 题解列表 2019年01月08日 0 点赞 0 评论 1270 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct a{ int score1,score2,score3; char name[10]; char number[10];}…… 题解列表 2019年01月05日 2 点赞 0 评论 920 浏览 评分:3.0