什么地方错了?
应该怎么办 1 math.h2 scanf中的逗号用英文
3 sin函数后面加分号 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);
}
还是不行
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);
}
{:10_269:}{:10_269:} scanf(“%lf,”)--这里逗号应该在双引号外面
页:
[1]