这个是哪里错了

来源:1-1 初始C语言

qq_慕粉3409578

2019-08-01 10:36


hello.c: In function 'main':
hello.c:9:17: error: '$x' undeclared (first use in this function)
     scanf("%lf",$x);
                 ^~
hello.c:9:17: note: each undeclared identifier is reported only once for each function it appears in


写回答 关注

4回答

  • 慕侠2069640
    2019-09-05 15:29:53
    一经出现就以其功能丰富、表达能力强、灵活方便、应用面广等特点迅速在全世界普及和推广。C语言不但执行效率高而且可移植性好,可以用来开发应用软件、驱动、操作系统等。C语言也是其它众多高级语言的鼻祖语言,所以说学习C语言是进入编程世界的必修课。


  • qq_慕斯0473760
    2019-08-10 18:12:20

    dsfcgdsg

  • 小小疾飞
    2019-08-01 10:41:39

    没有$x 你想说的是&x吧

  • qq_慕粉3409578
    2019-08-01 10:36:40

    #include <stdio.h>

    #include <math.h>


    void main()

    {

        double x,s;

        

        printf("inout number:\n");

        scanf("%lf",$x);

        printf("sin of %lf is %lf\n",x,s);

    }


C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926028 学习 · 20793 问题

查看课程

相似问题