,把其中的switch语句改写成等价的条件语句。int x,y;scanf(“%d”,x);switch( x!=0 ){case 0: y=0; break;case 1: switch( x>0) {case 1: y=1; break;case 0: y=-1;}}(7)描述函数conv()的功能,并写出下列程序的输出结果。void conv(int m){if( m>...