int a = 4, b = 8; 下列哪组语句能实现变量a和b值互换( )
int t; a = t; b = a; t = b;
int t = a; a = b; b= t;
int t = a; b = t; a = b;
int t; a = b; b = a; t = a;
发表评论