为了账号安全,请及时绑定邮箱和手机立即绑定

哪位大神帮个忙,谢谢啦!

哪位大神帮个忙,谢谢啦!

C
儚三姩 2017-02-19 15:24:18
【题目:请定义一个函数式宏定义swap(type,a,b)以使type型的2值互相转换。(假设a=5,b=10,最后输出a=10,b=5)】#include<stdio.h>#define swap(type,a,b) (z=a; a=b; b=z;)int main(){int x,y;int z=0;scanf("%d %d",&x,&y); printf("x=%d,y=%d,z=%d\n", swap(int,x,y) );return 0;}
查看完整描述

1 回答

已采纳
?
KevenHuang

TA贡献280条经验 获得超233个赞

<?php
//用php来给你做个示范,思路是一样的
function swap($x,$y){
    $tmp = $x;
    $x = $y;
    $y = $tmp;
    return array('x'=>$x,'y'=>$y);
}
print_r(swap(1,10));
?>


查看完整回答
反对 回复 2017-02-19
  • 1 回答
  • 0 关注
  • 1150 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信