怎么编一个欢迎界面,闪过就消失,求各位大神哥哥们帮帮忙,还有怎么输入一个字符关闭C语言运行界面
[此贴子已经被作者于2016-6-5 18:48编辑过]

当一个人回首往事时,不因虚度年华而悔恨,也不因碌碌无为而羞愧。
#include<stdio.h> #include<stdlib.h> #include<windows.h> int main() { unsigned timer=3; char op; printf("welcome!\n"); while(timer != 0) { Sleep(1000);timer--; } system("cls"); scanf("%c",&op); if(op == 'q') exit(0); else /* dosomething... */ return 0; }
#include<stdio.h> #include<stdlib.h> int main() { unsigned timer=3; char op; printf("welcome!\n"); while(timer != 0) { sleep(1);timer--; } system("clear"); scanf("%c",&op); if(op == 'q') exit(0); else /* dosomething... */ return 0; }
[此贴子已经被作者于2016-6-5 19:11编辑过]
void Screen() {int i; cleardevice(); settextstyle(1,0,8); outtextxy(120,80,"WU ZI QI"); settextstyle(1,0,4); outtextxy(270,270,"V S"); i=bioskey(0); while(i==space) { cleardevice(); settextstyle(0, 0, 2); outtextxy(50,50,"BLACK WHITE CHESS"); settextstyle(0,0,1); outtextxy(4,354,"ESC -->OVER!!"); outtextxy(4,364,"A -->Try Again!!"); setcolor(1); rectangle(100,100,300,300); rectangle(1,350,170,450); for(i=1;i<21;i++) { line(100+10*i,100,100+10*i,300); line(100,100+10*i,300,100+10*i); } } } 这是我的两个界面的转换[codevoid Screen() {int i; cleardevice(); settextstyle(1,0,8); outtextxy(120,80,"WU ZI QI"); settextstyle(1,0,4); outtextxy(270,270,"V S"); i=bioskey(0); while(i==space) { cleardevice(); settextstyle(0, 0, 2); outtextxy(50,50,"BLACK WHITE CHESS"); settextstyle(0,0,1); outtextxy(4,354,"ESC -->OVER!!"); outtextxy(4,364,"A -->Try Again!!"); setcolor(1); rectangle(100,100,300,300); rectangle(1,350,170,450); for(i=1;i<21;i++) { line(100+10*i,100,100+10*i,300); line(100,100+10*i,300,100+10*i); } } }][/code]