Skip to content

Latest commit

 

History

History
15 lines (14 loc) · 224 Bytes

58.md

File metadata and controls

15 lines (14 loc) · 224 Bytes

题目:学用rectangle画矩形。

#include <graphics.h>
#include <conio.h>

void main()
{
	initgraph(640, 480);
	// 绘制矩形框
	rectangle(50, 50, 550, 400);
	// 按任意键继续
	getch();
	closegraph();
}