标题:[求助]这是我的程序,为什么后面老报错哦!
取消只看楼主
enjoy8309
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2007-9-21
 问题点数:0 回复次数:1 
[求助]这是我的程序,为什么后面老报错哦!

/* file: draw a box */

# include <stdio.h>
# include <graphics.h>
# include <genlib.h>

/* constants */

#define h 0.5
#define w 1.0

/* function prototypes */

void drawcrossbox( double x,double y,double width, double height);

/* main program */

main()
{
initgraphics();
drawcrossbox( 0.5,0.5,w,h);
getch();
}


void drawcrossbox( double x,double y,double width,double height)
{
MovePen(x,y);
DrawLine(0,height);
DrawLine(width,0);
DrawLine(0,-height);
DrawLine(-width,0);
}

未定义的符号 '_DrawLine' 在模块 111.txt
未定义的符号 '_MovePen' 在模块 111.txt
未定义的符号 '_initgraphics' 在模块 111.txt

搜索更多相关主题的帖子: double drawcrossbox include void 
2007-09-21 10:54
enjoy8309
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2007-9-21
得分:0 
2007-09-21 12:46



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-171767-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.917384 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved