资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

c语言show函数功能,show函数作用

0)不成立,退出,为什么会有输出:1 2 3 4 5'>c语言我的理解是当i=1时,show(0),递归,if(0>0)不成立,退出,为什么会有输出:1 2 3 4 5

show(0),递归,if(00)不成立

安徽网站制作公司哪家好,找成都创新互联!从网页设计、网站建设、微信开发、APP开发、成都响应式网站建设等网站项目制作,到程序开发,运营维护。成都创新互联成立与2013年到现在10年的时间,我们拥有了丰富的建站经验和运维经验,来保证我们的工作的顺利进行。专注于网站建设就选成都创新互联

不是退出 而是返回调用它的函数。

这就像 main调用show函数,show函数完成后,它会返回main函数继续执行。

show(5) 调用 show(4) 调用show(3).....show(0)

然后 show(0) 执行完了 返回 show(1) show(1) 执行完了 返回show(2) .......一直返回到show(5),然后到main函数 然后程序结束。

c语言中控件的Visible和Show有什么区别?

简单的理解呢 是没有明显区别的 show是方法 visible是属性;

show和visible都会触发Form_Load()事件.

但是 show 后面还有个参数(0和1 一个模式窗体和无模式,这是很重要的功能,通常用在锁定背景窗口时),visible则是隐藏和显示 它后面是赋值的.

form2.show 1 '模式窗体,除了form2其它窗体被冻结

form2.unload '卸载窗体,而且会释放内存.也会触发Form_QueryUnload()事件,

form2.visible=false'隐藏 但不会释放内存

同时还有form2.hide

show是对应hide

从上可以看出它们的关键区别:内存是否释放

show()运用哪些c语言知识

应该是自定义函数和系统调用,如果方便的话给个最佳答案吧,谢谢

c语言中有show函数吗

【1】这个是有的,如下示例:printf("%d\n",p-tm_sec); /*获取当前秒*/printf("%d\n",p-tm_min); /*获取当前分*/printf("%d\n",8+p-tm_hour);/*获取当前时,这里获取西方的时间,刚好相差八个小时*/printf("%d\n",p-tm_mday);/*获取当前月份日数,范围是1-31*/printf("%d\n",1+p-tm_mon);/*获取当前月份,范围是0-11,所以要加1*/printf("%d\n",1900+p-tm_year);/*获取当前年份,从1900开始,所以要加1900*/printf("%d\n",p-tm_yday); /*从今年1月1日算起至今的天数,范围为0-365。

【2】c语言:C语言是一种计算机程序设计语言,它既具有高级语言的特点,又具有汇编语言的特点。它由美国贝尔研究所的D.M.Ritchie于1972年推出,1978年后,C语言已先后被移植到大、中、小及微型机上,它可以作为工作系统设计语言,编写系统应用程序,也可以作为应用程序设计语言,编写不依赖计算机硬件的应用程序。它的应用范围广泛,具备很强的数据处理能力,不仅仅是在软件开发上,而且各类科研都需要用到C语言,适于编写系统软件,三维,二维图形和动画,具体应用比如单片机以及嵌入式系统开发。

C++中show是干什么用的void show()去掉void后,那个有什么意义

void show()的意思是函数不返回任何值。去掉void后会是什么情况完全取决于编译器。可能报错。也可能和void show()一样。也可能出现其它情况。因为不是每一个编译器都完全实际标准的,而且这个标准也在修订。所以void show()这样才能保证它运行良好。

我是今早提问C语言程序的那个

修改以下代码,我以前学习时学编的,相信你的智商!

#includestdio.h

#includestdlib.h

#includeconio.h

#includedos.h

#includestring.h

#define LEN sizeof(struct student)

#define FORMAT "%-8d%-15s%-12.1lf%-12.1lf%-12.1lf%-12.1lf\n"

#define DATA stu[i].num,stu[i].name,stu[i].elec,stu[i].expe,stu[i].requ,stu[i].sum

float Felec,Fexpe,Frequ;

struct student/*定义学生成绩结构体*/

{

int num;/*学号*/

char name[15];/*姓名*/

double elec;/*选修课*/

double expe;/*实验课*/

double requ;/*必修课*/

double sum;/*总分*/

};

struct student stu[50];/*定义结构体数组*/

void in();/*录入学生成绩信息*/

void show();/*显示学生信息*/

void order();/*按总分排序*/

void del();/*删除学生成绩信息*/

void modify();/*修改学生成绩信息*/

void menu();/*主菜单*/

void insert();/*插入学生信息*/

void total();/*计算总人数*/

void search();/*查找学生信息*/

void main()/*主函数*/

{

int n;

menu();

scanf("%d",n);/*输入选择功能的编号*/

while(n)

{

switch(n)

{

case 1:

in();

break;

case 2:

search();

break;

case 3:

del();

break;

case 4:

modify();

break;

case 5:

insert();

break;

case 6:

order();

break;

case 7:

total();

break;

default:break;

}

getch();

menu();/*执行完功能再次显示菜单界面*/

scanf("%d",n);

}

}

void in()/*录入学生信息*/

{

int i,m=0;/*m是记录的条数*/

char ch[2];

FILE *fp;/*定义文件指针*/

if((fp=fopen("data","ab+"))==NULL)/*打开指定文件*/

{

printf("can not open\n");

return;

}

while(!feof(fp))

{

if(fread(stu[m] ,LEN,1,fp)==1)

m++;/*统计当前记录条数*/

}

fclose(fp);

if(m==0)

printf("No record!\n");

else

{

system("cls");

show();/*调用show函数,显示原有信息*/

}

if((fp=fopen("data","wb"))==NULL)

{

printf("can not open\n");

return;

}

for(i=0;im;i++)

fwrite(stu[i] ,LEN,1,fp);/*向指定的磁盘文件写入信息*/

printf("please input(y/n):");

scanf("%s",ch);

if(strcmp(ch,"Y")==0||strcmp(ch,"y")==0)

{

printf("please input per centum:");

printf("\nelective:");

scanf("%f",Felec);

printf("\nexperiment:");

scanf("%f",Fexpe);

printf("\nrequired course:");

scanf("%f",Frequ);

}

while(strcmp(ch,"Y")==0||strcmp(ch,"y")==0)/*判断是否要录入新信息*/

{

printf("number:");

scanf("%d",stu[m].num);/*输入学生学号*/

for(i=0;im;i++)

if(stu[i].num==stu[m].num)

{

printf("the number is existing,press any to continue!");

getch();

fclose(fp);

return;

}

printf("name:");

scanf("%s",stu[m].name);/*输入学生姓名*/

printf("elective:");

scanf("%lf",stu[m].elec);/*输入选修课成绩*/

printf("experiment:");

scanf("%lf",stu[m].expe);/*输入实验课成绩*/

printf("required course:");

scanf("%lf",stu[m].requ);/*输入必修课成绩*/

stu[m].sum=stu[m].elec*Felec+stu[m].expe*Fexpe+stu[m].requ*Frequ;/*计算出总成绩*/

if(fwrite(stu[m],LEN,1,fp)!=1)/*将新录入的信息写入指定的磁盘文件*/

{

printf("can not save!");

getch();

}

else

{

printf("%s saved!\n",stu[m].name);

m++;

}

printf("continue?(y/n):");/*询问是否继续*/

scanf("%s",ch);

}

fclose(fp);

printf("OK!\n");

}

void show()

{

FILE *fp;

int i,m=0;

fp=fopen("data","ab+");

while(!feof(fp))

{

if(fread(stu[m] ,LEN,1,fp)==1)

m++;

}

fclose(fp);

printf("number name elective experiment required sum\t\n");

for(i=0;im;i++)

{

printf(FORMAT,DATA);/*将信息按指定格式打印*/

}

}

void menu()/*自定义函数实现菜单功能*/

{

system("cls");

printf("\n\n\n\n\n");

printf("\t\t|---------------------STUDENT-------------------|\n");

printf("\t\t|\t 0. exit |\n");

printf("\t\t|\t 1. input record |\n");

printf("\t\t|\t 2. search record |\n");

printf("\t\t|\t 3. delete record |\n");

printf("\t\t|\t 4. modify record |\n");

printf("\t\t|\t 5. insert record |\n");

printf("\t\t|\t 6. order |\n");

printf("\t\t|\t 7. number |\n");

printf("\t\t|-----------------------------------------------|\n\n");

printf("\t\t\tchoose(0-7):");

}

void order()/*自定义排序函数*/

{

FILE *fp;

struct student t;

int i=0,j=0,m=0;

if((fp=fopen("data","ab+"))==NULL)

{

printf("can not open!\n");

return;

}

while(!feof(fp))

if(fread(stu[m] ,LEN,1,fp)==1)

m++;

fclose(fp);

if(m==0)

{

printf("no record!\n");

return;

}

for(i=0;im-1;i++)

for(j=i+1;jm;j++)/*双重循环实现成绩比较并交换*/

if(stu[i].sumstu[j].sum)

{

t=stu[i];

stu[i]=stu[j];

stu[j]=t;

}

if((fp=fopen("data","wb"))==NULL)

{

printf("can not open\n");

return;

}

for(i=0;im;i++)/*将重新排好序的内容重新写入指定的磁盘文件中*/

if(fwrite(stu[i] ,LEN,1,fp)!=1)

{

printf("%s can not save!\n");

getch();

}

fclose(fp);

printf("save successfully\n");

}

void del()/*自定义删除函数*/

{

FILE *fp;

int snum,i,j,m=0;

char ch[2];

if((fp=fopen("data","ab+"))==NULL)

{

printf("can not open\n");

return;

}

while(!feof(fp))

if(fread(stu[m],LEN,1,fp)==1)

m++;

fclose(fp);

if(m==0)

{

printf("no record!\n");

return;

}

printf("please input the number:");

scanf("%d",snum);

for(i=0;im;i++)

if(snum==stu[i].num)

break;

if(i==m)

{

printf("can not find");

getchar();

return;

}

printf("find the student,delete?(y/n)");

scanf("%s",ch);

if(strcmp(ch,"Y")==0||strcmp(ch,"y")==0)/*判断是否要进行删除*/

{

for(j=i;jm;j++)

stu[j]=stu[j+1];/*将后一个记录移到前一个记录的位置*/

m--;/*记录的总个数减1*/

printf("delete successfully!\n");

}

if((fp=fopen("data","wb"))==NULL)

{

printf("can not open\n");

return;

}

for(j=0;jm;j++)/*将更改后的记录重新写入指定的磁盘文件中*/

if(fwrite(stu[j] ,LEN,1,fp)!=1)

{

printf("can not save!\n");

getch();

}

fclose(fp);

}

void search()/*自定义查找函数*/

{

FILE *fp;

int snum,i,m=0;

char ch[2];

if((fp=fopen("data","ab+"))==NULL)

{

printf("can not open\n");

return;

}

while(!feof(fp))

if(fread(stu[m],LEN,1,fp)==1)

m++;

fclose(fp);

if(m==0)

{

printf("no record!\n");

return;

}

printf("please input the number:");

scanf("%d",snum);

for(i=0;im;i++)

if(snum==stu[i].num)/*查找输入的学号是否在记录中*/

{

printf("find the student,show?(y/n)");

scanf("%s",ch);

if(strcmp(ch,"Y")==0||strcmp(ch,"y")==0)

{

printf("number name elective experiment required sum\t\n");

printf(FORMAT,DATA);/*将查找出的结果按指定格式输出*/

break;

}

else

return;

}

if(i==m)

printf("can not find the student!\n");/*未找到要查找的信息*/

}

void modify()/*自定义修改函数*/

{

FILE *fp;

int i,j,m=0,snum;

if((fp=fopen("data","ab+"))==NULL)

{

printf("can not open\n");

return;

}

while(!feof(fp))

if(fread(stu[m],LEN,1,fp)==1)

m++;

if(m==0)

{

printf("no record!\n");

fclose(fp);

return;

}

printf("please input the number of the student which do you want to modify!\n");

scanf("%d",snum);

for(i=0;im;i++)

if(snum==stu[i].num)/*检索记录中是否有要修改的信息*/

break;

if(im)

{

printf("find the student!you can modify!\n");

printf("please input per centum:");

printf("\nelective:");

scanf("%f",Felec);

printf("\nexperiment:");

scanf("%f",Fexpe);

printf("\nrequired course:");

scanf("%f",Frequ);

printf("name:\n");

scanf("%s",stu[i].name);/*输入名字*/

printf("\nelective:");

scanf("%lf",stu[i].elec);/*输入选修课成绩*/

printf("\nexperiment:");

scanf("%lf",stu[i].expe);/*输入实验课成绩*/

printf("\nrequired course:");

scanf("%lf",stu[i].requ);/*输入必修课成绩*/

stu[i].sum=stu[i].elec*Felec+stu[i].expe*Fexpe+stu[i].requ*Frequ;

}

else

{

printf("can not find!");

getchar();

return;

}

if((fp=fopen("data","wb"))==NULL)

{

printf("can not open\n");

return;

}

for(j=0;jm;j++)/*将新修改的信息写入指定的磁盘文件中*/

if(fwrite(stu[j] ,LEN,1,fp)!=1)

{

printf("can not save!");

getch();

}

fclose(fp);

}

void insert()/*自定义插入函数*/

{

FILE *fp;

int i,j,k,m=0,snum;

if((fp=fopen("data","ab+"))==NULL)

{

printf("can not open\n");

return;

}

while(!feof(fp))

if(fread(stu[m],LEN,1,fp)==1)

m++;

if(m==0)

{

printf("no record!\n");

fclose(fp);

return;

}

printf("please input position where do you want to insert!(input the number)\n");

scanf("%d",snum);/*输入要插入的位置*/

for(i=0;im;i++)

if(snum==stu[i].num)

break;

for(j=m-1;ji;j--)

stu[j+1]=stu[j];/*从最后一条记录开始均向后移一位*/

printf("now please input the new information.\n");

printf("number:");

scanf("%d",stu[i+1].num);

for(k=0;km;k++)

if(stu[k].num==stu[i+1].numk!=i+1)

{

printf("the number is existing,press any to continue!");

getch();

fclose(fp);

return;

}

printf("please input per centum:");

printf("\nelective:");

scanf("%f",Felec);

printf("\nexperiment:");

scanf("%f",Fexpe);

printf("\nrequired course:");

scanf("%f",Frequ);

printf("name:\n");

scanf("%s",stu[i+1].name);

printf("\nelective:");

scanf("%lf",stu[i+1].elec);

printf("\nexperiment:");

scanf("%lf",stu[i+1].expe);

printf("\nrequired course:");

scanf("%lf",stu[i+1].requ);

stu[i+1].sum=stu[i+1].elec*Felec+stu[i+1].expe*Fexpe+stu[i+1].requ*Frequ;

if((fp=fopen("data","wb"))==NULL)

{

printf("can not open\n");

return;

}

for(k=0;k=m;k++)

if(fwrite(stu[k] ,LEN,1,fp)!=1)/*将修改后的记录写入磁盘文件中*/

{

printf("can not save!");

getch();

}

fclose(fp);

}

void total()

{

FILE *fp;

int m=0;

if((fp=fopen("data","ab+"))==NULL)

{

printf("can not open\n");

return;

}

while(!feof(fp))

if(fread(stu[m],LEN,1,fp)==1)

m++;/*统计记录个数即学生个数*/

if(m==0)

{

printf("no record!\n");

fclose(fp);

return;

}

printf("the class are %d students!\n",m);/*将统计的个数输出*/

fclose(fp);

}


网页名称:c语言show函数功能,show函数作用
文章网址:http://cdkjz.cn/article/dsiehho.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

业务热线:400-028-6601 / 大客户专线   成都:13518219792   座机:028-86922220