对于下面的值,编写一个程序,计算表达式 z=a*b+(c/d)-e*f a=10 b=7 c=15.75 d=4 e=2 f=5.6
#include<stdio.h> void main() { int a,b,c,d,e,f,g; a=10; b=7; c=15.75; d=4; e=2; f=5.6; g=a*b+(c/d)-e*f; printf("%d\n",g); }