王老师:19139051760(拨打)复制微信 题目 更新时间:2023/4/3 读下列程序,写出程序的运行结果。 #include void fun(int x, int y); int a=5, b=8; int main( ) { int a=15; fun(a, b); printf("a=%d, b=%d\n", a, b); } void fun(int x, int y) { int temp; if(a>b) { temp=a; x=y; y=temp; } } 输出: 答案 登录 注册 a=15, b=8 出自:联大 >> 华北水利水电大学C 语言程序设计 华北水利水电大学继续教育学院