符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
/* 请在此文件中完成以下两个函数实现,并调试程序,实现程序功能 */
成都创新互联从2013年创立,是专业互联网技术服务公司,拥有项目成都网站建设、成都网站制作网站策划,项目实施与项目整合能力。我们以让每一个梦想脱颖而出为使命,1280元扶风做网站,已为上家服务,为扶风各地企业和个人服务,联系电话:028-86922220
/* int readFile( struct stuinfo stu[] ); */
/* void input_high( struct stuinfo stu[], float high[], int n ) */
/* */
/* 其它函数内容请勿更改 */
#include stdio.h
#include stdlib.h
#include string.h
struct stuinfo{
int serial; //学生编号
char name[10]; //学生姓名
};
int readFile( struct stuinfo stu[] );
void input_high( struct stuinfo stu[], float high[], int n );
void write_data();
void main()
{
struct stuinfo stu[30];
float stuHigh[30];
int stuNum;
int topStu=0;
// write_data();
stuNum = readFile( stu );
input_high( stu, stuHigh, stuNum );
return ;
}
/* 从文件"StuInfo.dat"中读出各位学生记录,以及记录个数 */
/* 学生记录存放在数组 stu中,函数返回学生人数 */
int readFile( struct stuinfo stu[] )
{
FILE *fp;
struct stuinfo *p;
int i=0;
if( (fp = fopen("StuInfo.dat", "rb+" )) == NULL)
{
printf("file canot read!\n");
exit(1);
}
p=(struct stuinfo *)malloc(sizeof(struct stuinfo));
while(fread( p, sizeof(struct stuinfo), 1, fp)!=0)
{
stu[i]=*p;
i++;
p=(struct stuinfo *)malloc(sizeof(struct stuinfo));
}
fclose(fp);
return i;
}
/* 输入每个学生的身高信息 */
/* 显示每位同学基本信息后,输入该同学的身高 */
/* 计算并显示所有同学的平均身高 */
void input_high( struct stuinfo stu[], float high[], int n )
{
int i;
float sum=0;
for(i=0;in;i++)
{
printf("Student %d serial, name:%s\n",i+1,stu[i].name);
printf("Please input student's height:");
scanf("%f",high[i]);
sum+=high[i];
}
printf("student's average height:%f",sum/n);
}
/* 从键盘上输入学生信息,保存到StuInfo.dat文件中 */
void write_data( )
{
FILE *fp;
struct stuinfo stu[30];
int i, stuNum=0;
printf("Please input student number(30): ");
scanf("%d",stuNum);
if( stuNum 30 )
{
printf("data error");
exit(1);
}
for( i=0; istuNum; i++)
{
printf("Please input Student %d serial, name:\n", i+1 );
scanf("%d", stu[i].serial);
scanf("%s",stu[i].name);
}
if( (fp = fopen("StuInfo.dat", "wb+" )) == NULL)
{
printf("file canot write!\n");
exit(1);
}
fwrite( stu, sizeof(struct stuinfo), stuNum, fp);
fclose( fp );
return;
}
需要准备的材料分别有:电脑、C语言编译器。
1、首先,打开C语言编译器,新建一个初始.cpp文件,例如:test.cpp。
2、在test.cpp文件中,输入C语言代码:int fun(){return 1;}。
3、编译器运行test.cpp文件,此时成功调用fun()函数输出了内容。
scanf("%d",lenth);
int* a=(int*)calloc(lenth,sizeof(int));
int* b=(int*)calloc(lenth,sizeof(int));
printf("Input array a:\n");
inputarray(a,lenth);