result = a/b*c+d;
有一个对变量赋值的语句 a=??; 可以知道了
在运算之前应该对a有过赋值了。比如
#include<stdio.h>
int main()
{
int result,a,b,c,d;
int a=1; //这里不就是对a的赋值了吗?
int b=2;
int c=3;
int d=4;
result = a/b*c+d;
printf(“%d”,result);
return 0;
}
问题完全看不懂,是地球语言吗