shenao123 发表于 2020-7-31 06:32:47

c语言求助 can not open file

#include <stdio.h>
#include <math.h>

void main()
{
        double x,s;
        printf("input number:\n");
        scanf("%lf",&x);
        s=sin(x);
        printf("sine of 5lf is %lf\n",x,s);
}


显示LINK : fatal error LNK11 04: cannot open file "Debug/xiaozhu. exe"   怎么办???

zltzlt 发表于 2020-7-31 07:27:49

可以参考下:

https://blog.csdn.net/qinrenzhi/article/details/84790587

另外你的代码有点小错误,帮你改好了:

#include <stdio.h>
#include <math.h>

int main()
{
    double x, s;
    printf("input number:\n");
    scanf("%lf", &x);
    s = sin(x);
    // 这里的 %lf 打成了 5lf
    printf("sine of %lf is %lf\n", x, s);
    return 0;
}

SHRS23 发表于 2020-7-31 11:51:16

把工程中除了.c代码文件以外的所有文件删除,重新编译

405794672 发表于 2020-8-1 19:50:59

你的最后一句。sine of 5lf??????这个5lf?????,应该是%吧。。。

shenao123 发表于 2020-8-1 20:30:07

感谢
页: [1]
查看完整版本: c语言求助 can not open file