iooqojj 发表于 2020-6-30 16:48:12

求大佬解释

#include<math.h>
#include<stdio.h>
main()
{
double x,s;
printf("input number:\n");
scanf("%lf,&x);
s = sin(x);
printf("sine of %lf is %if\n",x,s);

请问我这个有什么错误吗?
为什么一直给我报这个
D:\1\1.c(8) : error C2146: syntax error : missing ')' before identifier 's'

liuzhengyuan 发表于 2020-6-30 16:51:45

本帖最后由 liuzhengyuan 于 2020-6-30 16:53 编辑

第 6 行、分号(;)变成了中文标点
第 8 行、scanf 缺少右引号 → scanf("%lf",&x);
第 11 行、大括号(})变成了中文标点

直接帮你改好了:
#include<math.h>
#include<stdio.h>
main()
{
        double x, s;
        printf("input number:\n");
        scanf("%lf", &x);
        s = sin(x);
        printf("sine of %lf is %if\n", x, s);
}
页: [1]
查看完整版本: 求大佬解释