这个是哪里不对?一直改都不对,希望有位专家能帮我答疑解惑,谢谢

变量a、b、c没定义,在使用变量a、b、c前先定义下变量即可;然后打印整数的话是使用%d,打印浮点数是%f。
测试如下:
参考链接:
https://www.runoob.com/cprogramming/c-variables.html
https://blog.csdn.net/qq_29874741/article/details/94626531
http://c.biancheng.net/view/153.html
#include <stdio.h>
int main(void){
// https://www.runoob.com/cprogramming/c-variables.html
// http://c.biancheng.net/view/153.html
// 变量使用前先定义,然后定义的同时初始化变量,即给变量赋初始值
int a=5;
int b=3,c=4;
printf("%d\n",a);
printf("%d\n",b);
// https://blog.csdn.net/qq_29874741/article/details/94626531
printf("%d\n",b*c);
printf("%f\n",b*c);
return 0;
}
