c语言toxy是什么意思
的有关信息介绍如下:#include”stdio.h”#include”conio.h”#include”stdlib. h”#include”dos.h”#include”time.h” int a[16+1][30+1];/*数组用来存放地雷和数字的 */多出一个是用来控制边界的 int flag1,flag2;/*长宽调整标志*/ int color_flag=1,lei_number=10,high=8,width=8,face_ flag=1; struct time1/*调用时间函数*/ {unsigned char ti_min; unsigned char ti_hour; unsigned char ti_hund; unsigned char ti_sec;}t; void rect() { /*本模块的功能是在C界面上画边框,以增加C的 友好性和可观性*/ int i; textcolor(14); textbackground(color_flag); clrscr();/*设置字体和背景颜色*/ gotoxy(1,2);putchar(201);/*左上角*/ for(i=1;i<79;i++) {gotoxy(i+1,2);putchar(205);}/*直线*/ putchar(187);/*右上角*/ for(i=2;i<23;i++) {gotoxy(80,i+1);putchar(186);}/*直线*/ gotoxy(80,24);putchar(188);/*右下角*/ for(i=1;i<79;i++) {gotoxy(i+1,24);putchar(205);}/*竖线*/ gotoxy(1,24);putchar(200);/*右上角*/ for(i=2;i<23;i++) {gotoxy(1,i+1);putchar(186);}/*竖线*/ gotoxy(30,1);cprintf(“WELCOMETO SAOLEI!”); gotoxy(28,25);cprintf(“COPYRIGHT---LANGCY-- -2002”);} void rect_s() { int i;/*根据长宽调整标志画边框*/