A-A+ 阅读下面程序 则执行后的输出结果为#includefun(int a in 2022-08-06 02:15:03 问答库 阅读 174 次 问题详情 阅读下面程序,则执行后的输出结果为#include<stdio.h>fun(int a,int b){ int s; s=a*b/2; printf("%dn",s);}main(){ int a=10,b=16; fun(a,b);}A.10B.16C.160D.80请帮忙给出正确答案和分析,谢谢! 参考答案 正确答案:D直接将数据代入函数即可