c语言 学生成绩管理系统 跪求代码!!

如题所述

#include"stdio.h"
#include<stdlib.h>
#include<string.h>
#include"process.h"
#include"ctype.h"
typedef struct
{
char num[10];
char name[10];
int cyuyan;
int math;
int english;
int shujujiegou;
}Student;
Student stu[99];
int shuru(Student stud[],int n)/*输入若干条记录*/
{
int i=0;
char sign,x[10];
while(sign!='n'&&sign!='N')
{
printf("输入学生学号:");
scanf("%s",stu[n+i].num);
printf("输入学生姓名:");
scanf("%s",stu[n+i].name);
printf("输入学生的c语言、数学、英语、数据结构分数:");
scanf("%d%d%d%d",&stu[n+i].cyuyan,&stu[n+i].math,&stu[n+i].english,&stu[n+i].shujujiegou);
gets(x); /*清除多余的输入*/
printf("是否继续输入?(Y/N):\n");
温馨提示:内容为网友见解,仅供参考
无其他回答

怎样用C语言写学生成绩管理系统?
student[][1]到student[][4]存放四门成绩,\\x0d\\x0a\/\/student[][5]存放总分,student[][6]存放平均分,student[][7]存放排名\\x0d\\x0a int n,i,j,k,p,t,count,

利用c语言开发一个“学生成绩管理系统”谁来帮帮忙
学生成绩管理系统-c语言程序代码二 学生成绩管理系统-c语言版 include "stdio.h" \/*I\/O函数*\/ include "stdlib.h" \/*其它说明*\/ include "string.h" \/*字符串函数*\/ include "conio.h" \/*屏幕操作函数*\/ include "mem.h" \/*内存操作函数*\/ include "ctype.h" \/*字符操作函数*\/ include...

求只用c语言编写的学生成绩管理系统。
void sort(struct student s[],int total); \/\/冒泡排序 void insert(struct student s[],int total); \/\/插入学生(自动排序)int del(struct student s[],int total); \/\/删除学生 void searchNum(struct student s[],int total); \/\/按学号查询 void main(){ struct student stu...

c语言学生成绩管理系统的用户登录部分,输入用户名和密码的代码
printf("\\t\\t| |\\n");printf("\\t\\t| 欢迎使用学生成绩管理系统 |\\n");printf("\\t\\t| |\\n");printf("\\t\\t| |\\n");printf("\\t\\t|---|\\n");getch();break;} else printf("\\n\\t\\t密码错误,请重新输入!\\n");} if(i>3){ printf("...

【急】求C语言学生成绩管理系统源代码,要能用的
start: printf("\\n\\t\\t\\t欢迎使用学生成绩管理系统\\n");\/*一下为功能选择模块*\/ do { printf("\\n\\t\\t\\t\\t1.录入学员信息\\n\\t\\t\\t\\t2.显示学员信息\\n\\t\\t\\t\\t3.成绩排序信息\\n\\t\\t\\t\\t4.添加学员信息\\n\\t\\t\\t\\t5.删除学员信息\\n\\t\\t\\t\\t6.修改学员信息\\n\\t\\t\\t\\t...

c语言 学生成绩管理系统 跪求代码!!
输入学生姓名:");scanf("%s",stu[n+i].name);printf("输入学生的c语言、数学、英语、数据结构分数:");scanf("%d%d%d",&stu[n+i].cyuyan,&stu[n+i].math,&stu[n+i].english,&stu[n+i].shujujiegou);gets(x); \/*清除多余的输入*\/ printf("是否继续输入?(Y\/N):\\n");

怎么用C语言作学生成绩管理系统
可以实现定义输入N个人M门科目的成绩输入,有查找、排序功能 include <stdio.h> include <string.h> define NUM 100 struct student { int number; \/\/学号 char name[12]; \/\/姓名 int score[20]; \/\/成绩 int total; \/\/总分 double average; \/\/平均分 };struct student stu...

用c语言实现一个简单的学生成绩管理系统,包括:学号,姓名,科目,成绩
char num[6]; \/*学号*\/ char name[10]; char subject[20]; \/*科目*\/ float grade;}stu[10];void menu(){ printf("===\\n"); printf("| 学生成绩管理系统 |\\n"); printf("| 1 输入学生成绩 |\\n"); printf("| 2 输出学生成绩 ...

用C语言设计一个学生成绩管理系统
include <stdio.h>#include <string.h> include <stdlib.h>#define MAX 1000\/*定义学生成绩信息结构*\/struct stu{ char id[8];char name[8];

用C语言编辑一个学生成绩管理系统
struct student stud[N]; \/*定义结构体数组,用于记录学生信息*\/ do \/*利用循环显示界面*\/ { system("cls"); \/*清屏函数*\/ printf("\\n\\n");printf("\\t\\t\\t\\t 学生成绩管理系统 \\n\\n");printf("\\t\\t\\t\\t1.输入学生成绩\\n");printf("\\t\\t\\t\\t2.按总分排榜\\n");p...

相似回答
大家正在搜