yhx123456 发表于 2018-5-1 15:41:22

什么地方错了?

应该怎么办

BngThea 发表于 2018-5-1 15:46:13

1 math.h
2 scanf中的逗号用英文
3 sin函数后面加分号

yhx123456 发表于 2018-5-1 15:52:38

BngThea 发表于 2018-5-1 15:46
1 math.h
2 scanf中的逗号用英文
3 sin函数后面加分号

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

void nain()
{
        double x, s;

        printf("input number:\n");
        scanf("%lf,"&x);
        s = sin(x);
        printf("sin of %lf is %lf\n",x,s);
}
还是不行

故梦L 发表于 2018-5-1 15:59:12

int main()//函数名错误
{
        double x, s;

        printf("input number:\n");
        scanf_s("%lf",&x);//分号错误
                s = sin(x);
        printf("sin of %lf is %lf\n", x, s);


}

flylobster 发表于 2018-5-1 16:10:10

{:10_269:}{:10_269:}

站的更高 发表于 2018-5-2 15:19:58

scanf(“%lf,”)--这里逗号应该在双引号外面
页: [1]
查看完整版本: 什么地方错了?