当前位置: 代码迷 >> C语言 >> 不知道为什么程序过编译不了.用DVE编译器的
  详细解决方案

不知道为什么程序过编译不了.用DVE编译器的

热度:237   发布时间:2007-12-08 17:36:59.0
不知道为什么程序过编译不了.用DVE编译器的
程序:
#include <stdio.h>
#define ADJUST 4.64
#define SCALE 0.325
int main(void)
{
    double shoe, foot;
    printf("shoe size(men's) foot length\n");
    shoe=3.0;
    while (shoe<18.5)
    {
          foot=SCALE*shoe+ADJUST;
          prinrf("10.1f%15.2f inchse\n",shoe,foot);
          shoe=shoe+1.0;
    }
    printf("if the shoe fits,wear it.\n");
getch();   
return 0;
}


编译时显示错误:
                                            [Linker error] undefined reference to `prinrf'
                                            ld returned 1 exit status
  E:\Dev-Cpp\Makefile.win   [Build Error]  [gc1.exe] Error 1
搜索更多相关的解决方案: DVE  编译  

----------------解决方案--------------------------------------------------------
dev-cpp需要一些设置工作才能正常运行程序,建议lz去看看图形区有专门这方面的帖子,应该能解决你的问题
----------------解决方案--------------------------------------------------------
原帖由 [bold][underline]奔跑的鸟[/underline][/bold] 于 2007-12-8 17:40 发表 [url=http://bbs.bc-cn.net/redirect.php?goto=findpost&pid=1138393&ptid=191218][/url]
dev-cpp需要一些设置工作才能正常运行程序,建议lz去看看图形区有专门这方面的帖子,应该能解决你的问题


刚编译同样一个.但没循环的就能通过....
----------------解决方案--------------------------------------------------------
[Linker error] undefined reference to `prinrf'
那可能几原程序打错了,printf你打成r了
----------------解决方案--------------------------------------------------------
原帖由 [bold][underline]奔跑的鸟[/underline][/bold] 于 2007-12-8 17:56 发表 [url=http://bbs.bc-cn.net/redirect.php?goto=findpost&pid=1138442&ptid=191218][/url]
[Linker error] undefined reference to `prinrf'
那可能几原程序打错了,printf你打成r了



..程序我都复制上去了。.没有你说的问题呀~
----------------解决方案--------------------------------------------------------
问题在于 getch()这个函数,它在 conio.h  这个头文件中,你把这个头文件加上,还有把那个“prinrf” 改回成正确的"printf" 就可以在VC++6.0下编译通过了。。。。
----------------解决方案--------------------------------------------------------
while (shoe<18.5)
    {
          foot=SCALE*shoe+ADJUST;
          prinrf("10.1f%15.2f inchse\n",shoe,foot);
          shoe=shoe+1.0;
    }
这里的
----------------解决方案--------------------------------------------------------
原帖由 [bold][underline]奔跑的鸟[/underline][/bold] 于 2007-12-8 20:46 发表 [url=http://bbs.bc-cn.net/redirect.php?goto=findpost&pid=1138740&ptid=191218][/url]
while (shoe




汗~~我真大意..谢谢~~
----------------解决方案--------------------------------------------------------
  相关解决方案