为了账号安全,请及时绑定邮箱和手机立即绑定

找不出哪有问题,求解

#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.


正在回答

2 回答

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;

}


2 回复 有任何疑惑可以回复我~

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

0 回复 有任何疑惑可以回复我~
#1

慕用6191887 提问者

还是有问题欸
2020-10-22 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
C语言入门
  • 参与学习       926026    人
  • 解答问题       20793    个

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

进入课程

找不出哪有问题,求解

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信