题目内容
阅读下面程序,则执行后的输出结果为
#include<stdio.h>
fun(int a,int b)
{
int s;
s=a*b/2;
printf("%d\n",s);
}
main()
{
int a=10,b=16;
fun(a,b);
}
查看答案
搜索结果不匹配?点我反馈