c语言画图给xy轴写名字
时间: 2024-06-04 22:12:28 浏览: 117
txy.zip_c语言画图
#include <stdio.h>
#include <graphics.h>
int main() {
// 初始化图形界面
int gd = DETECT, gm;
initgraph(&gd, &gm, "");
// 画x轴
line(50, 250, 550, 250);
outtextxy(550, 250, "X");
// 画y轴
line(300, 50, 300, 450);
outtextxy(300, 50, "Y");
// 关闭图形界面
getch();
closegraph();
return 0;
}
阅读全文