运算符的应用
#include <stdio.h>
int main()
{
int a,b,c,d;
double result;
a = 1;
b = 2;
c = 3;
d = 4;
result = a+b -c/ d;
printf("%f\n", result);
return 0;
}
为什么他的结果是3.000000而不是2点多
#include <stdio.h>
int main()
{
int a,b,c,d;
double result;
a = 1;
b = 2;
c = 3;
d = 4;
result = a+b -c/ d;
printf("%f\n", result);
return 0;
}
为什么他的结果是3.000000而不是2点多
2020-04-08
举报