Skip to content

Latest commit

 

History

History
15 lines (14 loc) · 221 Bytes

57.md

File metadata and controls

15 lines (14 loc) · 221 Bytes

题目:画图,学用line画直线。

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

void main()
{
	initgraph(640, 480);
	// 画一条直线
	line(0, 0, 300, 300);
	// 按任意键继续
	getch();
	closegraph();
}