当前位置:首页 » 课程大全 » c语言课程设计中南大学

c语言课程设计中南大学

发布时间: 2021-01-31 17:40:36

A. 求高斯算法完整C语言程序,急。。。。。

中南民族大学计算机科学学院本科课程设计

B. c语言程序设计 教学设备管理系统 谢谢啦!分不是问题

#include<graphics.h>
#include<stdlib.h>
#include<stdio.h>
#include<conio.h>
#define NULL 0
#define LEN sizeof(struct equipment)

struct equipment
{long number;
char name[20];
char adr[20];
long date;
long taishu;
long price;
long amount;
char instruction[20];
struct equipment *next;
};
struct equipment *head,*equip,*p5,*p;
int n;
struct equipment *del1,*del2,*del3;
struct equipment*insert(struct equipment *head,struct equipment *p);

/*输入函数*/
struct equipment* creat(void)
{struct equipment *p1,*p2;
n=0;
p1=p2=(struct equipment*)malloc(LEN);
printf("\n教学设备编号为0时,退出输入!\n");
printf("输入教学设备编号 :");
scanf("%ld",&p1->number);
printf("\n输入设备名称:");
scanf("%s",&p1->name);
printf("\n输入生产厂家:");
scanf("%s",&p1->adr);
printf("\n输入购置日期:");
scanf("%ld",&p1->date);
printf("\n输入台数:");
scanf("%ld",&p1->taishu);
printf("\n输入单价:");
scanf("%ld",&p1->price);
p1->amount=(p1->taishu)*(p1->price);
printf("\n输入备注:");
scanf("%s",&p1->instruction);
head=NULL;
while(p1->number!=0)
{n=n+1;
if(n==1) head=p1;
else p2->next=p1;
p2=p1;
p1=(struct equipment*)malloc(LEN);
printf("\n输入教学设备编号:");
scanf("%ld",&p1->number);
if(p1->number==0) break;
else
{printf("\n输入设备名称:");
scanf("%s",&p1->name);
printf("\n输入生产厂家:");
scanf("%s",&p1->adr);
printf("\n输入购置日期:");
scanf("%ld",&p1->date);
printf("\n输入台数:");
scanf("%ld",&p1->taishu);
printf("\n输入单价:");
scanf("%ld", &p1->price);
p1->amount=(p1->taishu)*(p1->price);
printf("\n输入备注:");
scanf("%s",p1->instruction);}
}
p2->next=NULL;
return(head);
}
void print()
{clrscr();
gotoxy(33,0);
printf("\16[{-80|10@30,30=4(2)5****中南大学教学设备管理系统****}]");
gotoxy(3,5);
printf("设备编号 设备名称 生产厂家 购置日期 台数 单价 金额 备注\n");}
void print1()
{int i,j;
for(i=0;i<=8;i++)
line(70*i+16,60,70*i+16,60+36*(n+1));
for(j=0;j<=n+1;j++)
line(16,60+36*j,70*8+16,60+36*j);}

/*显示函数*/
void output(struct equipment* head)
{struct equipment*p;
p=head;
printf(" ");
if(head!=NULL)
do
{printf("\n %-9ld%-9s%-9s%-9ld%-9ld%-9ld%-9ld%-9s \n",p->number,p->name,p->adr,p->date,p->taishu,p->price,p->amount,p->instruction);
p=p->next;}while(p!=NULL);
printf(" ");
getch();}
/*修改函数*/
void change(struct equipment* head)
{struct equipment *p;
long num;
cleardevice();
for(;;)
{
printf("\n请输入要修改的设备编号:");
scanf("%ld",&num);
p=head;
while(num!=p->number&&p->next!=NULL)
{p=p->next;}
if(num!=p->number)
{printf("\n对不起,无此记录!按任意键返回!");
getch();
break;}
else
{printf("\n请输入新的设备记录:");
printf("\n输入教学设备编号:");
scanf("%ld",&p->number);
printf("\n输入教学设备名称:");
scanf("%s",&p->name);
printf("\n输入生产厂家:");
scanf("%s",&p->adr);
printf("\n输入购置日期:");
scanf("%ld",&p->date);
printf("\n输入台数:");
scanf("%ld",&p->taishu);
printf("\n输入单价:");
scanf("%ld",&p->price);
p->amount=(p->taishu)*(p->price);
printf("\n输入备注:");
scanf("%s",p->instruction);
printf("\n是否继续退出,Y/N?");
if(getch()!='y') break;
}
}}
/*查找函数*/
void search(struct equipment* head)
{ struct equipment *p;
char choice;
long key;
do
{clrscr();
if(head==NULL)
printf("\n 无此记录!");
printf("\n请输入要查找的设备编号:");
scanf("%ld",&key);
p=head;
while(key!=p->number&&p->next!=NULL)
{p=p->next;}
if(key==p->number)
{print();
print1();
printf("\n %-9ld%-9s%-9s%-9ld%-9ld%-9ld%-9ld%-9s",p->number,p->name,p->adr,p->date,p->taishu,p->price,p->amount,p->instruction);
printf("\n");}
else
{printf("\n无此编号,请按任意键返回!");
getch();}
printf("\n您是否需要继续查找?(y/n)\n");
choice=getch();
}while(choice=='y');
}
/*删除函数*/
struct equipment *del(struct equipment *head)
{ struct equipment *p1,*p2;
long number;
int b=0;
do
{clrscr();
if(head==NULL)
{printf("\n无此记录!\n");
return(head);}
else
{b=0;
if(del1==NULL) b=b+1;
if(del2==NULL) b=b+1;
if(del3==NULL) b=b+1;
if(b!=0)
printf("\n回收站还有%d的空间!",b);
else
printf("\n回收站已满,无法再删除!");
printf("\n请输入要删除的教学设备编号:");
scanf("%ld",&number);
p1=head;
while(number!=p1->number&&p1->next!=NULL)
{p2=p1;
p1=p1->next; }
if(number==p1->number)
{printf("\n进行逻辑删除还是物理删除,Y/N?");
if(getch()=='y')
{if(del1==NULL) del1=p1;
else if(del2==NULL) del2=p1;
else del3=p1;}
if(p1==head) head=p1->next;
else p2->next=p1->next;
printf("\n已删除设备编号%ld记录!",number);
b=b-1;}
else
{printf("\n无此设备记录!");
getch();}
printf("\n是否继续删除/Y/N?");
}
}while(getch()=='y');
getch();
return(head);
}

/*恢复函数*/
struct equipment *recover(struct equipment* head)
{ struct equipment *p0,*p1,*p2;
long rec_num,a=0;
cleardevice();
gotoxy(1,3);
do{printf("\n可恢复的设备编号:");
if(del1!=NULL)
{a=a+1;printf("\n%ld",del1->number); }
if(del2!=NULL)
{a=a+1;printf("\n%ld",del2->number);}
if(del3!=NULL)
{a=a+1;printf("\n%ld",del3->number); }
if(a==0)
{printf("\n没有可恢复的数据,请按任意键退出!");
getch();
return(head); }
printf("\n请输入要恢复的教学设备编号:");
scanf("%ld",&rec_num);
if(rec_num==del1->number)
{p0=del1;
del1=NULL;}
else if(rec_num==del2->number)
{p0=del2;

del2=NULL;}
else if(rec_num==del3->number)
{p0=del3;
del3=NULL;}
else {printf("\n输入错误,按任意键返回!");
getch();
return(head);}
p1=head;
if(head==NULL)
{head=p0;p0->next=NULL;}
else
{while((p0->number>p1->number)&&(p1->next!=NULL))
{p2=p1;
p1=p1->next;}
if(p0->number<p1->number)
{if(head==p1){head=p0;p0->next=p1;}
else p2->next=p0;
p0->next=p1;
} else
{p1->next=p0;
p0->next=NULL;}}
n=n+1;
output(head);
printf("\n恢复成功,请按任意键返回!");
printf("\n是否继续进行恢复Y/N?");
}while(getch()=='y');
getch();
return(head);
}
/*添加函数*/
struct equipment *insert(struct equipment* head,struct equipment *p)
{
char choice;
p=(struct equipment*)malloc(LEN);

do
{
clrscr();
printf("\n请输入新的教学设备资料:");
printf("\n输入编号:");
scanf("%ld",&p->number);
printf("\n输入名称:");
scanf("%s",p->name);
printf("\n输入生产厂家:");
scanf("%s",p->adr);
printf("\n输入购置日期:");
scanf("%ld",&p->date);
printf("\n输入台数:");
scanf("%ld",&p->taishu);
printf("\n 输入单价:");
scanf("%ld",&p->price);
p->amount=(p->taishu)*(p->price);
printf("\n输入备注:");
scanf("%s",p->instruction);
printf("\n");
if(n==0)
{ n=n+1;
head=p; }
else
{p->next=head;head=p;n++;}
printf("\n您是否要继续添加?(y/n)\n");
}while(getch()=='y');

return(head);
}
/*统计函数*/
void count(struct equipment* head)
{ int sum1=0,sum2=0,sum3=0,sum4=0,sum5=0,sum6=0,sum7=0,sum8=0;
struct equipment* p;
p=head;
while(p)
{ for(p=head;p!=NULL;p=p->next)
{ sum1+=p->taishu;
sum2+=p->amount;
if(p->amount<200)
{ sum3+=p->taishu;sum4+=p->amount; }
else
if(p->price<800)
{ sum5+=p->taishu;sum6+=p->amount; }
else
{ sum7+=p->taishu;sum8+=p->amount; }
}

}
output(head);
printf("\n 合计 %d %d\n",sum1,sum2);
n=n+1;
print1();
n=n-1;
printf("\n");
printf("\n");
printf("\n 200元以下的设备总台数及总金额: %d %d",sum3,sum4);
printf("\n 200--800元之间的设备总台数及总金额: %d %d",sum5,sum6);
printf("\n 800元以上的设备总台数及总金额: %d %d",sum7,sum8);
getch();

}
/*保存函数*/
void save(struct equipment *head)
{ FILE *fp;
struct equipment *p;
char name[20];
p=head;
cleardevice();
printf("\n请输入要保存的文件名:");
scanf("%s",name);
if((fp=fopen(name,"wb"))==NULL)
{printf("\n对不起!不能建立新文件!按任意键返回!");
getch();
return;}
while(p->number!=NULL)
{fwrite(p,LEN,1,fp);
p=p->next;}
printf("\n保存结束,请按任意键返回!");
fclose(fp);
getch();}
/*打开函数*/
struct equipment *dakai(void)
{ struct equipment *head, *p1,*p2 ;
char name[20];
FILE *fp=NULL;
cleardevice();
p1=p2=(struct equipment *)malloc(LEN);
printf("\n请输入要打开的文件名:");
head=p1;
scanf("%s",name);
if((fp=fopen(name,"rb"))==NULL)
{printf("\n对不起,没有该文件!请按任意键返回!");
getch();}
fread(p1,LEN,1,fp);
while(!feof(fp))
{p2->next=p1;
p2=p1;
p1=(struct equipment*)malloc(LEN);
fread(p1,LEN,1,fp);n++;};
p2->next=NULL;
fclose(fp);
output(head);
printf("\n文件已输出,请按任意键返回!");
getch();
return(head);
}



C. 中南大学c语言试题

C
语言程序设计试卷
一、单项选择题(每题1分,共20分)
1.
C语言规定:在一个源程序中,main函数的位置(

)。
A.
必须在最开始
B.
必须在系统调用的库函数的后面
C.
可以任意
D.
必须在最后
2.
下面四个选项中,均是合法浮点数的选项是(

)。
A.
+1e+1
5e-9.4
03e2
B.
-.60
12e-4
-8e5
C.
123e
1.2e-.4
+2e-1
D.
-e3
.8e-4
5.e-0
3.
若a=-14,b=3,则条件表达式
a
#define
F(y)
8.19-y
#define
PRINT(a)
printf("%d",(int)(a))
void
main(void)
{
int
x=2;
PRINT(x*F(3));
}
A.
10
B.
13
C.
11
D.
报错
11.
以下程序中编译和运行结果均正确的一个是(

)。
A.
A.
void
main(void)
{
union
{
int
n;
float
x;
}
comm={1};
printf("%d",comm.n);
}
B.
B.
void
main(void)
{
union
{
int
n;
float
x;
}
comm={12.5};
printf("%f",comm.x);
}
C.
C.
void
main(void)
{
union
{
float
x;
int
n;
}
comm={12.5}
printf("%f",comm.x);
}
D.
D.
void
main(void)
{
union
{
int
n;
float
x;
}
comm=5;
printf("%

D. c语言程序设计 中南大学陈松乔版课后答案

^^^^^^^^^^^^^^^^^^^

现在很流行问威客问题哦!

如果你有需求的话可以去万能网发任务哦!

很方便的

希望帮到你了哈!

E. 有没有中南民族大学生物医学工程c语言程序设计试题

亲,你的这个是多少字的哈

F. 中南大学C语言课程设计图书管理系统

尼玛 我也纠结中。。。

G. 中南大学计算机程序设计学的是C语言吗

c语言是基础哦 就像1+1=2一样

H. 中南大学计算机网络课程设计不做可以吗

不可以,影响成绩

I. 中南大学c语言上机考试考什么程序

第一题是填空题(3个)30分,第二题改错(两个位置)30分,第三题程序设计40分(一般考比较基础的程序)。建议你买本上机指导书看,应该是没什么问题的。

热点内容
武汉大学学生会辅导员寄语 发布:2021-03-16 21:44:16 浏览:612
七年级学生作文辅导学案 发布:2021-03-16 21:42:09 浏览:1
不屑弟高考成绩 发布:2021-03-16 21:40:59 浏览:754
大学毕业证会有成绩单 发布:2021-03-16 21:40:07 浏览:756
2017信阳学院辅导员招聘名单 发布:2021-03-16 21:40:02 浏览:800
查询重庆2018中考成绩查询 发布:2021-03-16 21:39:58 浏览:21
结业考试成绩怎么查询 发布:2021-03-16 21:28:40 浏览:679
14中医医师资格笔试考试成绩查分 发布:2021-03-16 21:28:39 浏览:655
名著赏析课程标准 发布:2021-03-16 21:27:57 浏览:881
北京大学商业领袖高端培训课程 发布:2021-03-16 21:27:41 浏览:919