#include "graphics.h"
#include <iostream>
int main()
{
initgraph(640, 480);//绘图初始化
outtextxy(100, 300, "aloha word!");//绘图
line(10, 10, 400, 400);
ege::getch();//清理
closegraph();
system("pause");
return 0;
}
#include "graphics.h"
#include <iostream>
int main()
{
initgraph(640, 480);//绘图初始化
outtextxy(100, 300, "aloha word!");//绘图
line(10, 10, 400, 400);
ege::getch();//清理
closegraph();
system("pause");
return 0;
}