conan12138 发表于 2018-2-1 12:15:40

大佬们看看,第一次作业,哪个地方错了

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

void main()
{
        double x, s;

        printf("input number:\n");
        scanf("%if", &x);
        s = sin(x);
        printf("sin of %if is %if\n", x, s);
}

BngThea 发表于 2018-2-1 12:17:03

%lf
是小写的 L,而不是 i

conan12138 发表于 2018-2-1 12:18:56

BngThea 发表于 2018-2-1 12:17
%lf
是小写的 L,而不是 i

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

void main()
{
        double x, s;

        printf("input number:\n");
        scanf("%lf", &x);
        s = sin(x);
        printf("sin of %lf is %lf\n", x, s);
}这样还是错的
Compiling...
Error spawning cl.exe错误原因

BngThea 发表于 2018-2-1 12:38:28

conan12138 发表于 2018-2-1 12:18
#include
#include



代码没错,是你的vc路径设置有点问题
参考:
https://zhidao.baidu.com/question/13693395.html

conan12138 发表于 2018-2-1 12:55:26

BngThea 发表于 2018-2-1 12:38
代码没错,是你的vc路径设置有点问题
参考:
https://zhidao.baidu.com/question/13693395.html

谢谢
页: [1]
查看完整版本: 大佬们看看,第一次作业,哪个地方错了