显示成绩函数的几点疑问
#include<stdlib.h>
#include<stdio.h>
#include<conio.h>
display(char x1,int x2,int x3,int x4)
{
int mark;
window(1,1,80,25);
textbackground(GREEN);
textcolor(YELLOW);
clrscr();
gotoxy(20,5);printf("xiao xue %c fa",x1);
gotoxy(15,8);printf("count: %d ti",x2);
gotoxy(15,10);printf("right: %d ti",x3);
gotoxy(15,12);printf("error: %d ti",x4);
mark=x3*100/x2;
gotoxy(15,14);
printf("mark: %d ",mark);
getch();
main();
}
这里的getch()什么作用,为什么放这。
main()为什么放这啊,它不是主函数吗?什么作用?
谢谢,各位的指教!!