| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 433 人关注过本帖
标题:[求助]程序调试不成功
只看楼主 加入收藏
dongweilee
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2006-11-8
收藏
 问题点数:0 回复次数:0 
[求助]程序调试不成功

编程环境为tc3.0,Alt+F9编译通过,按F9或CTRL+F9出现linker error.如图所示。请高人指点
源吗如下,是一个示例程序
// Borland C++ - (C) Copyright 1991 by Borland International

// BARCHART Example Program

#include <stdio.h>
#include <stdlib.h>
#include <float.h>
#include <graphics.h>
#include <math.h>
#include <conio.h>

#define MAX 50
#define ARRAYMAX 10

void makegraph(float p[]);

void main(void)
{
int i;
int scores[ARRAYMAX];
float percents[ARRAYMAX];

for (i = 0; i < ARRAYMAX; i++)
{
printf("\nEnter score between 0 and %d: ", MAX);
scanf("%d", &scores[i]);
}
for (i = 0; i < ARRAYMAX; i++)
percents[i] = ((float) scores[i]) / MAX;

printf("\n\n\n\tSCORE\tPERCENT");
for (i = 0; i < ARRAYMAX; i++)
printf("\n%d. \t%d\t%3.0f", i + 1, scores[i], (percents[i] * 100));
getch();
makegraph(percents);
}

void makegraph(float p[])
{
int g_driver, g_mode;
int i, left, top, wide, bottom, deep;

detectgraph(&g_driver, &g_mode);
initgraph(&g_driver, &g_mode, "..\\bgi");
wide = (int)((getmaxx()) / ((ARRAYMAX * 2 ) + 1));
bottom = getmaxy() - 20;
deep = (int) (wide / 4);
left = wide;
for (i = 0; i < ARRAYMAX; i++)
{
top = (bottom) - ((int)(p[i] * 300));
bar3d(left, top, (left + wide), bottom, deep, 1);
left += (wide * 2);
}
getch();
closegraph();
return;
}

图片附件: 游客没有浏览图片的权限,请 登录注册

搜索更多相关主题的帖子: 调试 
2006-11-15 09:30
快速回复:[求助]程序调试不成功
数据加载中...
 
   



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

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