参考代码如下,不过还是建议自己写一写比较好:#include #include #include struct student //结构体{ char name[20];//姓名 char numbe。
悲剧还是这个问题参考这个http://wenwen.soso.com/z/q201400716.htm
这个最简单了,适合初学者 #include "string.h" #include "stdio.h" #define N 30 int n=0; struct。
strcpy(t2,p1->name); strcpy(p1->name,p2->name); strcpy(p2->name,t2); strcpy(t1,p1->。
#include "stdio.h"void main(){ int sum=0; int score[10]; int count=0; int i=0; for(i=0;i90。
for(j=0;j
解答: //C语言-学生管理系统 //需求: //1.输入学生资料,包括编号、姓名、考试三门成绩及平均分。 // 2.要写入到文件,文件里读取出来再显示到屏幕上。 #inclu...
题目描述:输入n个学生的成绩,统计并输出其中的最高分、最低分和平均分。输入格式:第一行输入一个整数n,表示学生数量。接下来n行,每行输入一个整数,。
一个三重循环就可以了。计数一下,把前10个放数组里。 一个三重循环就可以了。计数一下,把前10个放数组里。
用FILE *fp;fp.open();fp.write();fp.read();这些函数就够用了,保存在磁盘上。 用FILE *fp;fp.open();fp.write();fp.read();这。
回顶部 |