标题:编译的时候没问题,但是运行的时候有错误
取消只看楼主
小茗
Rank: 1
等 级:新手上路
帖 子:17
专家分:0
注 册:2014-12-8
结帖率:100%
已结贴  问题点数:20 回复次数:2 
编译的时候没问题,但是运行的时候有错误
#include <stdio.h>
int main (void)
{
    const double unit_price = 3.50 ;
    int quantity = 0 ;
    printf("Enter the number that you want to buy :");
    sanf("%d",&quantity);
    if(quantity >10)
        printf("The price for %d is $%.2f\n",quantity,quantity*unit_price*0.95);
    else
        printf("The price for %d is $%.2f\n",quantity,quantity*unit_price);
    return 0;
}

Linking...
if1.obj : error LNK2001: unresolved external symbol _sanf
Debug/if.exe : fatal error LNK1120: 1 unresolved externals
执行 link.exe 时出错.
搜索更多相关主题的帖子: quantity include double number return 
2015-01-08 09:24
小茗
Rank: 1
等 级:新手上路
帖 子:17
专家分:0
注 册:2014-12-8
得分:0 
回复 2楼 tlliqi
嗯,不晓得怎么回事!这个程序应该很简单,不应该出这个错误!
2015-01-08 09:27
小茗
Rank: 1
等 级:新手上路
帖 子:17
专家分:0
注 册:2014-12-8
得分:0 
貌似打错了一个单词,休整就好了。
2015-01-08 09:29



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




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

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