扫雷背景
摘要:
1 #include 2 #include 3 void k(int x,int y) 4 {int a,b; 5 setcolor(RGB(200,200,200)); 6 for(a=x,b=y;a>x-4&&by-4;a++,b--) 9 line(a, y, a, b+40);10 setcolor(RGB(55,55,55));11 for(a=x,b=y;a>x-4&&by-4;b--,a++)14 line(a, b+40, a+40, b+40);15 }16 void main()1... 阅读全文