我们的graphics库提供了一个用于绘制矩形的函数,它就是……
fillectangle();
其格式为:
fillectangle(矩形左上角的x坐标,矩形左上角的y坐标,x方向的距离,y方向的距离);
举个栗子:
#include<graphics.h>
#include<conio.h>
#include<stdio.h>
int main() {
initgraph(600, 400);
fillrectangle(1, 1, 100, 100);
_getch();
closegraph();
}
效果:
坐标图: