问答详情
源自:3-1 运算符号是啥

找不出哪有问题,求解

#include <stadio.h>

int main()

{   int a = 1;

         b = 2;

         c = 3;

    double result;

    result = a + b* c

    printf("%f",result);

    return 0;

    

}


hello.c:1:20: fatal error: stadio.h: No such file or directory
 #include 
                    ^
compilation terminated.


提问者:慕用6191887 2020-10-21 21:39

个回答

  • 慕用5509181
    2020-10-27 22:19:16

    hello.c:1:20: fatal error: stadio.h: No such file or directory
     #include 
                        ^
    compilation terminated.

    1、这里提示你:stadio这个单词写错了,是stdio  。

    2、 int a,b,c ; //你没有事先声明。

    2、result = a + b* c //后面要有个分号“;”结尾。

    3、printf("%f",result); //标准点是printf("%f\n", result);你的缺少了"\n"回车换行符,当然,不要也可以运行。

    ---------改正如下----------你的答案是7,先乘除,后加减,2*3=6   , 6+1=7

    #include <stdio.h>

    int main()

    {

        int a,b,c;

        double result;

        a = 1;

        b = 2;

        c = 3;

        result = a + b * c ;    //在这里体验哦~

        printf("%f\n", result);

        return 0;

    }


  • 倾心230101
    2020-10-21 22:01:09

    int a=1那行要在大括号下一行才能正常运行