1.c语言的界面设计:API函数有:
要引入头文件:#include<stdlib.h>才能使用system();函数
system("color 4f") ; 控制窗口的背景色和输入文本颜色,
color 4f :4是背景色 ,f是字体色
system("mode con:cols=100 lines=100");
cols英语是:列数,相当于窗口的宽
lines:线,多少条线, 相当于窗口的高
system(“cls”); //cls是清屏,清除之前在窗口的文本。 system(“pause”); //pause:暂停意思,需要你再按一下enter键,才能执行函数.这个对应的函数。 没有这个,输入值,直接执行
2.窗口颜色值:
代码:
#include<stdio.h>
#include<stdlib.h>
void Red(){
printf("Red");
system("pause");
system("color 4f") ;
system("mode con:cols=100 lines=100");
}
void Blue(){
printf("Blue");
system("pause");
system("color 1f");
}
void Green(){
printf("Green");
system("pause");
system("color 2f");
}
void maim(){
printf("菜单栏\n");
printf("1.Red\n");
printf("2.Blue\n");
printf("3.Green\n");
printf("0.退出程序\n");
}
int main(){
int c;
while(c!=0){
maim();
scanf("%d",&c);
system("cls");
switch(c){
case 1: Red(); break;
case 2: Blue(); break;
case 3: Green(); break;
case 0: printf("GoodBye!\n"); exit(0);
default: printf("Error please input again!");
}
}
return 0;
}
效果图:
|