void Point(int x, int y, int type);
画点
(x, y) 为点的坐标,type 值含义如下:
void main() { for (;;) Point(rand() % 160, rand() % 80, 2); }