编写一个评估计算以下等式的程序的结果值:
20 - 5 * 2 + 42 / 6
然后显示上面等式的结果值。
参考实例代码
#include <stdio.h>
int main()
{
int result;
result=20-5*2+42/6;
printf("20-5*2+42/6=%d\n",result);
return(0);
}
执行上面示例代码,得到以下结果:
hema@ubuntu:~/book$ gcc main.c
hema@ubuntu:~/book$ ./a.out
20-5*2+42/6=17